# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
767876 | benjaminkleyn | Cluedo (IOI10_cluedo) | C++17 | 0 ms | 0 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"
#include <bits/stdc++.h>
using namespace std;
void Solve()
{
int M = 1, L = 1, W = 1, res;
while (res = solve(M, L, W))
{
if (res == 1) M++;
else if (res == 2) L++;
else if (res == 3) W++;
else break;
}
return;
}