제출 #655042

#제출 시각아이디문제언어결과실행 시간메모리
655042hyakupCluedo (IOI10_cluedo)C++17
100 / 100
12 ms288 KiB
#include "grader.h"
#include "cluedo.h"

#include <bits/stdc++.h>
using namespace std;

void Solve(){
   
	int m = 1, l = 1, w = 1;
   
	int resp = Theory( m, l, w );
   
	while( resp != 0 ){
   	
		if( resp == 1 ) m++;
		else if( resp == 2 ) l++;
		else w++;
		
		resp = Theory( m, l, w );
	}
	
	return;
   
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...