# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1011578 | SulA | 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 "cluedo.h"
using namespace std;
void Solve() {
unsigned char a[3] = {1,1,1}, x;
while (x = Theory(a[0], a[1], a[2]))
a[x-1]++;
}