| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 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;
}
}
}
}
}
