# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1220685 | FaresSTH | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include"bits/stdc++.h"
#include"cluedo.h"
using namespace std;
using ll=long long;
#define S second
#define F first
void Solve(){
int c[3]={1,1,1};
while(1){
int v=Theory(c[0],c[1],c[2]);
if(v==0)return;
c[v-1]++;
}
}