# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
356442 | Mefarnis | Cluedo (IOI10_cluedo) | C++14 | 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>
#include "cluedo.h"
// #include "grader.h"
using namespace std;
void Solve() {
int ar[3] = {1,1,1};
int res = Theory(ar[0],ar[1],ar[2]);
while(res != 0) {
ar[res-1]++;
res = Theory(ar[0],ar[1],ar[2]);
}
}