AyanoGod's blog

By AyanoGod, history, 3 years ago, In English

Is there any tool that fetches problems solved by a handle Rating-Wise? Like one has to input handle and rating and the tool will show up appropriate problems.

PS: Tried searching but didn't found one!!

  • Vote: I like it
  • +1
  • Vote: I do not like it

| Write comment?
»
3 years ago, # |
  Vote: I like it +1 Vote: I do not like it

It's not a website, but you might be interested in TLE, which is a Discord bot that suggests problems based on rating and provides other statistics.

  • »
    »
    3 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    "suggests problems based on rating" Actually, that's not what I want, I am more interested in getting a list of say, 1500 rated problems solved by some particular user.

    • »
      »
      »
      3 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Ah ok, I believe TLE can do that too, one of the commands is to get all solved problems with certain filters.

»
3 years ago, # |
  Vote: I like it -6 Vote: I do not like it

You can solve problems with difficulty around 100 or 200 above your current rate. You can do that by setting the difficulty in problem set filter.

»
5 months ago, # |
  Vote: I like it +3 Vote: I do not like it

You can use the users.status method of Codeforces API to get all submissions of a particular user. After that, iterate through all the problems in that list and apply the condition that the verdict should be accepted and rating should be equal to the desired rating.

»
5 months ago, # |
  Vote: I like it 0 Vote: I do not like it

https://github.com/vd-coder/Codeforces-Solved-Problem-Analyser

You can try this, Implemented it for personal use