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

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

1978E - Computing Machine266794537. It's failing in hidden test cases.

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

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

Just add in your code counter of the q. And if the sum of q is 529, print the test (then terminate the program). But to not print all 529 numbers, you can skip all unneeded after 9th (so it passes the first test). With this you will see the test on which it fails.

  • »
    »
    5 месяцев назад, # ^ |
    Rev. 4   Проголосовать: нравится 0 Проголосовать: не нравится

    Thank you so much for the help.
    Input-
    1(t)
    4(n)
    0110(a)
    1111(b)
    1(q)
    1 3(l & r)
    Expected output(given) — 0
    but the actual output for the above test case is 2
    so, the input I got here for 529th query is wrong.

    can you check my submission please- link
    Thank you in advance.