Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

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

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

Hey,

I tried solving problem 96B - Lucky Numbers (easy) and it gave me very strange TLE.

My submission 207541848 got TLE at n=10^9, but the same code passes the same test cases on the codeforces custom test compiler with a time of 1300ms (approximated).

As the time limit is 2second, Why am i getting TLE on main test?

 main test tle picture

 Custom test time limit picture

Now the rest of the solution is right and fits under the time limit. I just made a special case with n=10^9 and passed the main test. 207553081

Please help me figuring out what's happening wrong.

Thank you

white_square

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

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

Old problems runtime are doubled, because judges back then was much slower. So your solution needs to run in under 1 second in codeforces custom test