# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1141203 | groshi | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
#define int long long
using namespace std;
int32_t main()
{
//cin.tie(0);
//cout.tie(0);
//ios_base::sync_with_stdio(0);
int t[4]={0,1,1,1};
while(true)
{
int co=Theory(t[1],t[2],t[3]);
if(co==0)
break;
t[co]++;
}
return 0;
}