Hi all! Many times I have seen people saying that their solution fails at a particular test case. How they observe it? Is there a way to find out the test case at which your program fail?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Hi all! Many times I have seen people saying that their solution fails at a particular test case. How they observe it? Is there a way to find out the test case at which your program fail?
Name |
---|
No one can exactly know onto which test case their solution is generating wrong answer on spoj. What most of us can point is generally which test file is making the code fail. It is because during execution on some of the problems the judge displays "Running on test (9)" etc.
I guess that despite some wrong answers on some tests, the judge run your program on all tests.
No the system is similar to codeforces if your code generates a wrong answer on say test file 9 then it will not be further judged on test files 10,11,12 etc.
If it is so than we can simply follow the execution and find out the test from which the judge stop testing. However I don't think that it's working for all problems.