Is there any way to get the number of pretests of a problem?
I tried using this code
(fetch every submissions, check if there's any skipped/hacked solution then the number of pretest is the number of passed test of that submission, otherwise estimate the number by getting number of passed tests of solutions that fail on pretests/main tests of contestants)
However there are two problems:
- It's not possible if there's not enough submission for that problem. (For instance, running the code above says that there are at least 1 and at most 138 pretests for problem 566E)
- It's slow. (This can be partially avoided by fetching only solutions in contest, given that there are currently 19528 submissions but only 3585 in-contest ones)
Background: I'm trying to fix the userscript that displays only pretest verdict in virtual participation. A huge bug is that it assumes that double clicking an entry in the standing table will show [pretests]
or [main tests]
depends on whether the test is a pretest or a main test. However it isn't the case, as can be seen in https://codeforces.net/contest/566/standings (turn on "show unofficial", then double click the entry for problem C of user hogloid
, you can see "Wrong answer on test 1 [main tests]", which is obviously wrong.