# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1198918 | argsx | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "cluedo.h"
using namespace std;
void solve(){
int a=1,b=1,c=1;
int atb=1;
while(atb!=0){
atb=Theory(a,b,c);
if(atb==1)a++;
if(atb==2)b++;
if(atb==3)c++;
}
return ;
}