rope_and_snake's blog

By rope_and_snake, 6 months ago, In English

My solution to Problem B of 913 Div3 got TLE in system testing https://codeforces.com/contest/1907/submission/235878287, however resubmitting the exact same solution now gets accepted https://codeforces.com/contest/1907/submission/236034573

Can the TLE submissions be re-evaluated? The TLE is likely due to server overload during the system testing. Additionally, Test case #5 might have been included in the original tests which my submission passed during the live contest itself. Vladosiya MikeMirzayanov pashka

  • Vote: I like it
  • -10
  • Vote: I do not like it

»
6 months ago, # |
  Vote: I like it +20 Vote: I do not like it

Unfortunately it may happen that the same solution gets TLE or OK if it is very close to the time limit, like in your case (982 ms vs 1000 ms). We don't reevaluate such solutions after the contest is finished.

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

some functions have unfixed time complexity, so lucky is also an important factor. I've done some problems with 200 submittions , 199 TLE and 1 AC~~