Блог пользователя lovro-sinda

Автор lovro-sinda, 10 лет назад, По-английски

Can anyone please help me with my solution. Codeforces evaluator say that is crashed, but I can normaly test it.

Link: http://mirror.codeforces.com/contest/433/submission/6708852

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

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

I think it's beaucase you declared two arrays [10001][10001] of long long. This means 1,5 GB of memory.

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

    Probably. If one tryes to allocate more then 2GB static memory, 32-bit gcc produce invalid executable file, but didn't give compile error. So mostly, testing system thinks compilation was ok, trys to run, and gets error, while executing. It looks like internal error, not run-time, so it's denial of judgment.