제출 #404289

#제출 시각아이디문제언어결과실행 시간메모리
404289JasiekstrzCluedo (IOI10_cluedo)C++17
100 / 100
16 ms200 KiB
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve()
{
	for(int i=1,j=1,k=1;true;)
	{
		int x=Theory(i,j,k);
		switch(x)
		{
			case 0:
				return;
				break;
			case 1:
				i++;
				break;
			case 2:
				j++;
				break;
			case 3:
				k++;
				break;
		}
	}
	return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...