# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
252308 | SamAnd | Cluedo (IOI10_cluedo) | C++17 | 11 ms | 384 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 x = 1, y = 1, z = 1;
while (1)
{
int u = Theory(x, y, z);
if (u == 0)
return;
if (u == 1)
++x;
else if (u == 2)
++y;
else
++z;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |