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

Автор angel3, 12 лет назад, По-английски

I got WA in the final test in this problem. It failed to pass test case no 36. But I applied this case in the compiler of my pc and got the right output. Here is the submission.

Can anybody clarify what happened with this?

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

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

I don't know, but 2349041 is your solution.

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

I replaced scanf() with cin>> and got AC. can't I use scanf() when i declare a __int64 type variable?

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

    u can use scanf("%I64d", &x). but if ur compiler is g++ in linux, you may have to declare long long instead of __int64, and the input and output should be "%lld", but dont forget to replace "%lld" by "%I64d" when u solve problems in this oj. that's one of the difference between two compilers.