제출 #513382

#제출 시각아이디문제언어결과실행 시간메모리
513382PoPularPlusPlusCluedo (IOI10_cluedo)C++17
100 / 100
15 ms280 KiB
#include <bits/stdc++.h>
using namespace std;
#include "grader.h"
#include "cluedo.h"

void Solve(){
	array<int,3> arr = {0 , 1 , 1};
	int x = 1;
	do {
		arr[x-1]++;
		x = Theory(arr[0] , arr[1] , arr[2]);
	}while(x != 0);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...