| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1315240 | hayford08 | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 384 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve() {
int M = 1, L = 1, W = 1;
while (true) {
int response = Theory(M, L, W);
if (response == 0) break;
if (response == 1) {
M++;
}
else if (response == 2) {
L++;
}
else {
W++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
