I got this error. Does anyone know what this means? For code refer to this link
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | Dominater069 | 154 |
8 | awoo | 154 |
10 | luogu_official | 150 |
Name |
---|
This message tells you exactly which constraint you have violated. It's right there in the problem statement:
"[...] The first line should contain a single integer $$$ m $$$ ($$$ 1 \le m \le 11 $$$) — the number of used colors. [...] Print $$$ n $$$ integers $$$ c_1, c_2, \dots, c_n $$$ ( $$$ 1 \le c_i \le m $$$ ), [...]"
Here, for the third testcase in the sample input, your code has printed $$$c_{22} = 11$$$, which does not satisfy $$$ 1 \le c_i \le m $$$ when $$$i = 22$$$, because your code printed $$$m = 10$$$.
Q. wrong answer Integer parameter [name=a_i] equals to 11, violates the range [1, 3] (test case 3)
My submission: https://codeforces.net/contest/1772/submission/220431536 why showing wrong, even output and answer are same ? anyone know about this error?