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

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

I spent a lot of time debugging my code, but found nothing, can you guys help me with this problem: https://codeforces.com/contest/1363/problem/E

My code: https://codeforces.com/contest/1363/submission/85540470

THANKS IN ADVANCED!!!

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

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

I think I figured it out, the problem is your code prints 38644509816278 instead of 38653099750870 for the input in test case 19. I did my best to help based on the context and explanation in your post, hopefully you can take it from here.

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

To maybe get more helpful feedback, try to update your post with what you think the problem is asking for and also what your code is doing. That helps us help you to debug.

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

It's simply due to integer overflow instead of just storing ans as long long you should store all variables as long long. AC Submission:85585496

But after spending my 5 minutes on this I'm beginning to think I have too much free time :(