Submission #275186

#TimeUsernameProblemLanguageResultExecution timeMemory
275186Bill_00Cluedo (IOI10_cluedo)C++14
100 / 100
17 ms256 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
   int r;
   int a=1,b=1,c=1;
   while(6>=a && 10 >=b && 6>=c){
   		r=Theory(a,b,c);
		if(r==1){
			a++;
		}	
		if(r==2){
			b++;
		}
		if(r==3){
			c++;
		}
		if(r==0){
			return;
		}
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...