The_SSU's blog

By The_SSU, history, 3 years ago, In English

I Can't find error in my solution https://ideone.com/k5OTdF for the problem https://codeforces.com/gym/102942/problem/E. Can anyone give me any test case for which my code is wrong?

  • Vote: I like it
  • -14
  • Vote: I do not like it

| Write comment?
»
3 years ago, # |
  Vote: I like it +25 Vote: I do not like it

I was able to look at your submission through coach mode, and Codeforces has already told you where your code is probably going wrong. If you view your submission, there should be a big highlighted line saying Probably, the solution is executed with error 'signed integer overflow' on the line 45. I'd try fixing that first.

Also just FYI, it makes it much easier for others to help you if you give a brief explanation of what your code does. Reading code is harder than reading an explanation of what the code is meant to do.