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

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

sub1: http://codeforces.net/contest/512/submission/9696765 sub2: http://codeforces.net/contest/512/submission/9696746

Difference between above two code in line 24. in AC submission I wrote ar[111] where n=100. In another submission I wrote ar[33]. But the second verdict is WA. Why that happen?

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

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

when u access out of bounds of an array, it's not defined in c++ what will happen. undefined behavior