Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

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

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

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.com/contest/1350/problem/B Solution link: https://codeforces.com/contest/1350/submission/79905645

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

»
4 года назад, # |
  Проголосовать: нравится +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
  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +3 Проголосовать: не нравится

    Ohh I forgot to consider that fact. Thanks a lot for your information bro. This help me to take care next time.