# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
377136 | kevinxiehk | 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"
void Solve() {
// TODO: implementation
int a[5];
a[1]=1,a[2]=1,a[3]=1;
t=Theory(a[1],a[2],a[3]);
while(t!=0){
a[t]++;
t=Theory(a[1],a[2],a[3]);
}
return;
}