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

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

In today's contest during submission of my solution of B question then I got runtime error again and again and not able to understand the reason for it because I don't get any error in my VSCode IDE. I am putting a link of my solution and also commented that line which gives an error so, please tell me why it is giving runtime error? Thanks for your help.

Question link: https://codeforces.me/contest/1350/problem/B Solution link: https://codeforces.me/contest/1350/submission/79905645

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

»
6 лет назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

My guess is that you get runtime error from

factor.size()-2

The size() function returns an unsigned int. You can guess what happens if

factor.size() < 2