# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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);
}
}