제출 #211659

#제출 시각아이디문제언어결과실행 시간메모리
211659LawlietCluedo (IOI10_cluedo)C++17
100 / 100
17 ms384 KiB
#include <bits/stdc++.h>
#include "grader.h"

void Solve()
{
	int ans[4] = { 1 , 1 , 1 , 1 };
	int aux = Theory( ans[1] , ans[2] , ans[3] );

	while( aux != 0 )
	{
		ans[ aux ]++;
		aux = Theory( ans[1] , ans[2] , ans[3] );
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...