제출 #688330

#제출 시각아이디문제언어결과실행 시간메모리
688330sharaelongCluedo (IOI10_cluedo)C++17
100 / 100
11 ms220 KiB
#include "grader.h" #include "cluedo.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; void Solve(){ int i = 1, j = 1, k = 1; while (true) { // cout << i << ' ' << j << ' ' << k << endl; int r = Theory(i, j, k); if (r == 0) return; if (r == 1) { i++; } else if (r == 2) { j++; } else { k++; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...