# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
211659 | Lawliet | Cluedo (IOI10_cluedo) | C++17 | 17 ms | 384 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 "grader.h"
void Solve()
{
int ans[4] = { 1 , 1 , 1 , 1 };
int aux = Theory( ans[1] , ans[2] , ans[3] );
while( aux != 0 )
{
ans[ aux ]++;
aux = Theory( ans[1] , ans[2] , ans[3] );
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |