Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

liaoyanxu's blog

By liaoyanxu, 117 minutes ago, In English

In problem https://codeforces.com/contest/1990/problem/E1 and https://codeforces.com/contest/1990/problem/E2 ,I wrote a program and I forget to added"cout.flush()",and the submission judged on test case 4 for ~7min (time limit 4s),so why this program didn't received TLE? Is this a bug or just the wrong of checker?

Submission: https://codeforces.com/contest/1990/submission/271732926

PS:This bug might be used for create CF's long queue,so MikeMirzayanov pls fix it quick XD

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
23 minutes ago, # |
  Vote: I like it +2 Vote: I do not like it

A strange feature of CF (at least on this problem). When your code get ILE, the result might return very slow.

ILE means your code didn't output (correctly) when the checker expects your output.

  • »
    »
    14 minutes ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    First of all, ILE is not cout.flush() cause, and CF in the display of ILE before, has been displayed Running, so it is not the problem of return.