# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
866052 | ElenaBM | Cluedo (IOI10_cluedo) | C++17 | 6 ms | 352 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 guess[3] = {1,1,1};
int i;
i = Theory(guess[0],guess[1],guess[2]);
while(i){
++guess[i-1];
i = Theory(guess[0],guess[1],guess[2]);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |