# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
390273 | MilosMilutinovic | 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.
/**
* author: milos
* created: 15.04.2021 20:03:19
**/
#include <bits/stdc++.h>
#include "cleudo.h"
using namespace std;
void Solve() {
int x = 1, y = 1, z = 1;
while (true) {
int foo = Theory(x, z, y);
if (foo == 0) break;
if (foo == 1) x++;
if (foo == 2) y++;
if (foo == 3) z++;
}
}