# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
866273 | lomta | 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 <bits/stdc++.h>
using namepsace std;
void Solve(){
int a=1,b=1,c=1;
int r=1;
while(r!=0){
r = Theory(a,b,c);
if(r==1){
a++;
}
if(r==2){
b++;
}
if(r==3){
c++;
}
}
if(r==0){
return;
}
return;
}