# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
717607 | EntityPlantt | Cluedo (IOI10_cluedo) | C++14 | 16 ms | 272 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 a = 1, b = 1, c = 1;
while (true) {
switch(Theory(a, b, c)) {
case 0: return;
case 1: a++; break;
case 2: b++; break;
case 3: c++; break;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |