denilb's blog

By denilb, 6 months ago, In English

Hi, I can't find the reason my code doesn't pass test 3. After trying c++, I implemented the same code in python and it got TLE on test 9, so I'm clueless. Any help appreciated

B. Beautiful Contest

My code

EDIT: Thank you all for your help, I wrongly declared b as an int in the main function (C++ isn't my main language). I got it accepted now.

  • Vote: I like it
  • +2
  • Vote: I do not like it

»
6 months ago, # |
  Vote: I like it +8 Vote: I do not like it

You saw that $$$-10^{17} \le b_i \le 10^{17}$$$, right?

  • »
    »
    6 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Damn, I thought about it when I implemented modify() but not in the main function. C++ isn't my main language, thanks for your help

»
6 months ago, # |
  Vote: I like it +9 Vote: I do not like it

If the Python code is the same but the C++ code doesn't work, then it's likely due to a data type issue. Indeed, you set the variable $$$b$$$ as int in the input part.

Btw I've also been stuck in this problem for a few days because I don't know how to implement the solution.

  • »
    »
    6 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thank you, I'll think about it next time I'm stuck