Блог пользователя AyanoGod

Автор AyanoGod, история, 3 года назад, По-английски

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!!

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

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 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    "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 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 года назад, # |
  Проголосовать: нравится -6 Проголосовать: не нравится

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 месяцев назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

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 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

You can try this, Implemented it for personal use