http://mirror.codeforces.com/contest/449/submission/14705739
on my system the output for the given test case is coming to be "2" , while codeforces compiler is giving "1" .
why so?
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3741 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3489 |
7 | Radewoosh | 3483 |
8 | Kevin114514 | 3443 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 158 |
5 | -is-this-fft- | 158 |
7 | awoo | 156 |
8 | djm03178 | 155 |
9 | TheScrasse | 154 |
10 | Dominater069 | 153 |
http://mirror.codeforces.com/contest/449/submission/14705739
on my system the output for the given test case is coming to be "2" , while codeforces compiler is giving "1" .
why so?
Name |
---|
I doubt anybody will read your submission with such formatting
No need to read the code when tools can detect the problem.
Compiling with
-fsanitize=undefined
shows errorit means memory corruption, uninitialized memory or out of bound access.
Compiling with
-D_GLIBCXX_DEBUG
showsmost likely this is case 3. out of bound access. Replacing
[]
withat
confirms it.thanks