When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

moradiya84's blog

By moradiya84, history, 12 months ago, In English

I am getting the wrong answer on the 11359th test case in question Question Link and I can't access it so I am fuc**d. here's my solution My Solution feel free to help :)

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
12 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by moradiya84 (previous revision, new revision, compare).

»
12 months ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it
  1. Your code treats everything as int but the limits are in long long range.

  2. int p=d[i]-y; here p can become negative.

An example input where your solution fails:

3

1 2 10

1

3 6

Correct output: 1

Yours produces: 0