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