Блог пользователя Buu-Zaid

Автор Buu-Zaid, история, 7 лет назад, По-английски

i get Idleness limit exceeded on test 1,

Problem: 680C — Bear and Prime 100 [Submission]

What that's mean or how can i fix it, please.

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

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

Change printf("%dn", a); to printf("%d\n", a); in bool divisible(int).

AC solution: 32737927

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

    why it get Idleness limit exceeded and not Wrong Answer
    and what that mean ?

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится +2 Проголосовать: не нравится

      Idleness limit exceeded occurs when your program stays idle (waiting for user/interaction program) for long time.

      I'm not sure why is it not WA instead of Idleness limit exceeded. My guess is that interaction program expects a newline and thus keeps on waiting for your program.