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

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

my code : 20895807

input : AABCDEFGHIJKLMNOPQRSTUVW??M

in my PC : -1

in server : AABCDEFGHIJKLMNOPQRSTUVWAAM

am I miss something?

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

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

a) do not EVER use strlen(...) in for condition. It's invoked in every iteration.

b) the problem is: for(int r=r+1, l=l+1; ... use other names.

in general, if you get different output on your pc, your program behaves in non-deterministac way, because e.g you read from non-existing cell of array (out of bounds).