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

Автор TechnoFusion, история, 4 года назад, По-английски
  • Проголосовать: нравится
  • -8
  • Проголосовать: не нравится

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

Firstly, the link you provided links to each user's personal submissions page for Contest 1300. The link you wanted to provide is https://codeforces.com/contest/1300/submission/70683587.

As for your question, the problem requires an output that has n integers, in the case of the test on which your program fails this is 4, but your program only outputs 1. The error message is complaining that it's expecting more things in your output (specifically an int32), but instead it found that your output ended.

Hopefully this helps!