I'm getting verdict Denial of Judgement on 1906C - Cursed Game: 258387222.
I'm not sure whether my code is correct or not, but if it's the interactor's problem, please fix it.
I'm getting verdict Denial of Judgement on 1906C - Cursed Game: 258387222.
I'm not sure whether my code is correct or not, but if it's the interactor's problem, please fix it.
| № | Пользователь | Рейтинг |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| Страны | Города | Организации | Всё → |
| № | Пользователь | Вклад |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 4 | Proof_by_QED | 146 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
| Название |
|---|



Hi, thank you for reporting.
I tried to check the interactor and found one possible reason.
In your solution, for the case N > 3, you are assuming that the interactor will reply with
CORRECTafter the second query and immediately read the value of the nextN. However, the interactor still replied withINCORRECTafter your second query followed by a numeric string, so the next value ofNthat you read can be any arbitrary number. Then, you print a string of lengthNto the interactor, which may be an arbitrarily large string.The interactor uses
cinto read a string in a line, so if you send a very large string to the interactor, it may raise the memory problem. I can prevent this thing from happening in the interactor by limiting the number of characters to read in a line, but doing any changes to the interactor without further testing can be risky, so I decided to leave it as of now.I suggest you properly handle the
CORRECTandINCORRECTreplies by the interactor. We apologize for the imperfect interactor.thanks a lot!