| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1315228 | hayford08 | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
void Solve() {
// brute force through all possible combinations
for (int m = 1; m <= 6; m++) {
for (int l = 1; l <= 10; l++) {
for (int w = 1; w <= 6; w++) {
int response = Theory(m, l, w);
if (response == 0) {
return;
}
}
}
}
}
