# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1215158 | porquenomedejainiciarsesion | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
void Solve(){
int a=1,b=1,c=1;
int xd=Theory(a,b,c);
while(xd!=0){
if(xd==3){
a++;
}else if(xd==2){
b++;
}else{
c++;
}
xd=Theory(a,b,c);
}
}