Weird checker on 100299K

Правка en2, от 035966_L3, 2024-11-08 11:52:11

Related: 100299K - Digraphs, 290508668

The first case in test 3 was:

676
aa
ab
ac
...

My output was:

`

That is an illegal character, yet the checker give me an accepted???

It's been 10 (11?) years yet I'm the first one who discover this!?


Through my test this gets accepted:

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int T;
    cin >> T;
    while (T--)
        for (int i = 1; i <= 20; i++)
            puts("````````````````````");
    return 0;
}

As a result, the checker forgot to check whether output consists of illegal characters.

MikeMirzayanov fix this please...

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en8 Английский 035966_L3 2024-11-08 16:42:43 2
en7 Английский 035966_L3 2024-11-08 16:40:21 41
en6 Английский 035966_L3 2024-11-08 16:39:19 55
en5 Английский 035966_L3 2024-11-08 14:28:09 8
en4 Английский 035966_L3 2024-11-08 13:21:10 8
en3 Английский 035966_L3 2024-11-08 11:58:00 360
en2 Английский 035966_L3 2024-11-08 11:52:11 415
en1 Английский 035966_L3 2024-11-08 11:42:17 324 Initial revision (published)