# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
866250 | ElenaBM | Cluedo (IOI10_cluedo) | C++17 | 6 ms | 348 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"
using namespace std;
void Solve (){
int a = 1, b = 1, c = 1, x = -1;
while (x != 0){
x = Theory (a, b, c);
if (x == 1) a++;
if (x== 2) b++;
else if (x == 3) c++;
}
return;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |