제출 #308019

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

void Solve() {
	
	int a = 1, b = 1, c = 1, x;
	while (x = Theory(a, b, c), x) {
		a += x == 1;
		b += x == 2;
		c += x == 3;
	}
	
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...