Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

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

Автор rope_and_snake, 6 месяцев назад, По-английски

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

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

»
6 месяцев назад, # |
  Проголосовать: нравится +20 Проголосовать: не нравится

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

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