# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
402002 | Azimjon | Cluedo (IOI10_cluedo) | C++17 | 16 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 m, l, w, os;
m = l = w = 1;
while (1) {
os = Theory(m, l, w);
if (os == 0) return;
if (os == 1) m++;
if (os == 2) l++;
if (os == 3) w++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |