get_problemlist
Search Codeforces problems by rating range and tags, with OR/AND topic matching, and sort by recent or oldest. Returns up to 10 problems with names, ratings, tags, and links.
Instructions
Search the entire Codeforces problemset and return up to 10 problems.
Parameters:
min_rating: Minimum difficulty rating (e.g., 800)
max_rating: Maximum difficulty rating (e.g., 2400)
topics: List of tags to filter by (e.g., ["dp", "greedy"])
sort_by: "recent" (newest first) or "oldest" (oldest first)
match_type: "OR" (match any topic) or "AND" (must match ALL topics)
Returns 10 problems with names, ratings, tags, and direct links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topics | No | ||
| sort_by | No | recent | |
| match_type | No | OR | |
| max_rating | No | ||
| min_rating | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |