Hello to all,today I find a interesting problem on codeforces B. The least round way,when I submit my code I get wrong answer on test 3 but at my PC I have a correct solution on this test,what is the problem?can someone help me?Thanks.
№ | Пользователь | Рейтинг |
---|---|---|
1 | jiangly | 4039 |
2 | tourist | 3841 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3590 |
5 | ecnerwala | 3542 |
6 | Benq | 3535 |
7 | orzdevinwang | 3526 |
8 | gamegame | 3477 |
9 | heuristica | 3357 |
10 | Radewoosh | 3355 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 165 |
3 | atcoder_official | 160 |
3 | Um_nik | 160 |
5 | djm03178 | 158 |
6 | Dominater069 | 156 |
7 | adamant | 153 |
8 | luogu_official | 151 |
8 | awoo | 151 |
10 | TheScrasse | 147 |
Hello to all,today I find a interesting problem on codeforces B. The least round way,when I submit my code I get wrong answer on test 3 but at my PC I have a correct solution on this test,what is the problem?can someone help me?Thanks.
Название |
---|
Well, you are right, it also works on my computer. So...
I get these warnings though:
So, basically you don't return anything in one of your functions (but I think it's OK since you never use its return value), but your nr=nr++ is completely undefined.
So... undefined means what it means, it doesn't always work.
Just replace nr=nr++ by simply nr++, and it'll work :D
And... don't do this again ;-)
Thanks,now it's works.;)