Hi,
As most users know, upsolving is very important to improve in programming contests, sometimes you tried to solve a problem without luck, while seeing the same problem after some time (days / months / years?) you may be able to solve it, this means you improved the required skills to succeed this problem.
I tried to find all my unsolved problems from Codeforces without luck, in PROBLEMSET there is a frame (Last unsolved) with the list of the last 15 problems tried but that's not enough.
I checked the Codeforces API to find a way to check all my unsolved problems without luck, so I wrote a crawler to find them all, the project is on github: https://github.com/AlexITC/upsolving/
This tool uses your login details and extract the unsolved problems from Codeforces Rounds and from the Gym.
I hope this can be helpful.
P.S: If someone knows how to retrieve this information using Codeforces API, let me know please.
P.S.2: There is an unknown reason why all tried problems from gym are not retrieved, I may fix it when I have the time.
UPDATE
My friend thnkndblv made a great tool similar to this one and you only need to type your handle, here is the app: http://codeforced.github.io/handle/
UPDATE 2
I finally retrieved the tool for TJU (after 7 months), you can find it here: https://github.com/AlexITC/upsolving/tree/master/tju
The API has functions for listing problems and listing users submission. Wouldn't those allow getting what you wanted?
It is one of the examples for Codeforces API python library. https://github.com/soon/CodeforcesAPI/blob/master/examples/show_only_unsolved_problems/main.py
Great, do you know if that works for gym problems?
contest.list
method has boolean flaggym
which switches between gym and regular contests.problemset.problems
doesn't list problems from gym. Best way I can think of is requesting a single line of results with contest.standings method. It is a bit strange that API doesn't have better method for listing problems in a contest.Auto comment: topic has been updated by k790alex (previous revision, new revision, compare).
thnkndblv's tool shows old rating color
and also all the contests' links redirect to Good Bye 2014
You are right, the correct link to the contest is in column 'Contest ID'.
Thanks.
Who matters? that's a think you can see in your profile.
Trivial bug report: the third revolution's effects do not seem to have been processed yet.
Auto comment: topic has been updated by k790alex (previous revision, new revision, compare).