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