# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1203338 | evatea | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 408 KiB |
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
int i = 1, j = 1, k = 1;
int r = 5;
while (r != 0) {
r = Theory(i, j, k);
if (r == 1) {
i += 1;
}
else if (r == 2) {
j += 1;
}
else if (r == 3) {
k += 1;
}
}
return;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |