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

Автор vrintle, 3 года назад, По-английски

Hello everyone!

The following is my submission to Problem F1 — Guess the K-th Zero (Easy version)

118290089

It is showing me TLE, whereas when I run it locally, it passes the test case. I have also cross-checked my loops, but found nothing suspicious. I guess my logic is a bit different from others, but I will later work on that, firstly I want to know the reason for TLE.

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

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Remove the line

cout << n << ' ' << t << ' ' << k;

which you apparently used for debugging.

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
fflush(stdout) or cout.flush() in C ++;

Have you tried flushing the output buffer? It says in the problem statement that you may receive an Idleness Limit Exceeded (or TLE I guess) if you do not