IAmFaisal's blog

By IAmFaisal, history, 3 years ago, In English

I got this error. Does anyone know what this means? For code refer to this link

  • Vote: I like it
  • -5
  • Vote: I do not like it

| Write comment?
»
3 years ago, # |
  Vote: I like it +3 Vote: I do not like it

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$$$.

»
7 months ago, # |
  Vote: I like it +5 Vote: I do not like it

Q. wrong answer Integer parameter [name=a_i] equals to 11, violates the range [1, 3] (test case 3)

My submission: https://codeforces.com/contest/1772/submission/220431536 why showing wrong, even output and answer are same ? anyone know about this error?