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

Автор Messi_GOAT, история, 3 года назад, По-английски

This is the problem link here is my code.

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

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

NO constraints on the elements of array are given.

Since normal summation is giving wa so it may happen that elements are greater than long long limit.

so use addition like we did in school(carry method) or use big integer.

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

The answer does fit in long long. Your problem is that you should keep taking input until EOF not only 1 testcase. https://ideone.com/jkCnqF got AC.