hello
I'm getting an error that I couldn't inderstand : "wrong output format Unexpected end of file — int32 expected"
here is my code : (http://codeforces.com/contest/550/submission/11450063)
can anyone help me
thanks!
# | User | Rating |
---|---|---|
1 | Benq | 3783 |
2 | jiangly | 3710 |
3 | tourist | 3662 |
4 | Um_nik | 3526 |
5 | ko_osaga | 3500 |
6 | maroonrk | 3488 |
7 | ecnerwala | 3478 |
8 | inaFSTream | 3477 |
9 | fantasy | 3470 |
10 | QAQAutoMaton | 3428 |
# | User | Contrib. |
---|---|---|
1 | Um_nik | 185 |
2 | adamant | 177 |
2 | awoo | 177 |
4 | nor | 169 |
5 | maroonrk | 165 |
6 | -is-this-fft- | 164 |
7 | antontrygubO_o | 155 |
8 | ko_osaga | 151 |
8 | dario2994 | 151 |
10 | SecondThread | 148 |
hello
I'm getting an error that I couldn't inderstand : "wrong output format Unexpected end of file — int32 expected"
here is my code : (http://codeforces.com/contest/550/submission/11450063)
can anyone help me
thanks!
Name |
---|
It seems to be pretty straightforward.
Checker expected an int when it encountered EOF. Why it was expecting an integer? Probably because you said that there will X integers and then didn't output the correct number of integers. In this problem you're saying to checker how many numbers you will output (b), so check that for every possible k you output exactly the same number of ints as you tell.
thanks a lot!