Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

goodoo's blog

By goodoo, 11 years ago, In English

When I checked the submission of 301B, I found some accepted submissions failed in the following case:

input:
3 1000
5000
0 0
0 1
0 3

output:(which I think is correct)
1000

Am I correct? Is there anyway to update the test case and maybe rejudge acceptance?

Thanks

UPD Thanks Miras321. It turns out that I am wrong. I missed one constrain.

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

»
11 years ago, # |
  Vote: I like it +2 Vote: I do not like it

Your test case is wrong. a[i] must be <= 10 ^ 3. You have 5 * 10 ^ 3.

  • »
    »
    11 years ago, # ^ |
      Vote: I like it +3 Vote: I do not like it

    oops...

    I missed that constrain.

    Thank you very much