Блог пользователя IAmFaisal

Автор IAmFaisal, история, 3 года назад, По-английски

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

  • Проголосовать: нравится
  • -5
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

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

»
8 месяцев назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

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?