# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1024623 | vjudge1 | Cluedo (IOI10_cluedo) | C++11 | 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 <bits/stdc++.h>
using namespace std;
void Solve()
{
int i,j,k, res;
i = 0;
j = 0;
k = 0;
while(res = Theory(i, j, k)) {
if (res == 1) i++;
else if (res == 3) k++;
else j++;
}
}
int main() {
return 0;
}