Weird checker on 100299K

Revision en2, by 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...

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en5 English 035966_L3 2024-11-08 14:28:09 8
en4 English 035966_L3 2024-11-08 13:21:10 8
en3 English 035966_L3 2024-11-08 11:58:00 360
en2 English 035966_L3 2024-11-08 11:52:11 415
en1 English 035966_L3 2024-11-08 11:42:17 324 Initial revision (published)