제출 #1088051

#제출 시각아이디문제언어결과실행 시간메모리
1088051StefanSebezCluedo (IOI10_cluedo)C++14
100 / 100
8 ms412 KiB
#include "grader.h"
#include "cluedo.h"
#include<bits/stdc++.h>
using namespace std;
void Solve(){
	int a[4];a[1]=a[2]=a[3]=1;
	while(1){
		int x=Theory(a[1],a[2],a[3]);
		if(x==0) return;
		a[x]++;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...