# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
432911 | gonzakia29 | Cluedo (IOI10_cluedo) | C++17 | 11 ms | 200 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include "cluedo.h"
void Solve(){
int i = 1, j = 1, k = 1;
int r;
while (true){
r = Theory(i,j,k);
if (r == 1){
++i;
} else if (r == 2){
++j;
} else if (r == 3){
++k;
} else{
return;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |