# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
243069 | johutha | 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 <vector>
using namespace std;
void Solve(){
vector<int> h(3, 0);
for (int i = 0; i < 20; i++)
{
int r = theory(h[0], h[1], h[2]);
if (r == 0) break;
h[r - 1]++;
}
}