# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
598775 | Hanksburger | Cluedo (IOI10_cluedo) | C++17 | 12 ms | 240 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 "cluedo.h"
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
void Solve()
{
int a=1, b=1, c=1, x=Theory(1, 1, 1);
while (x)
{
if (x==1)
a++;
else if (x==2)
b++;
else
c++;
x=Theory(a, b, c);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |