Submission #688327

#TimeUsernameProblemLanguageResultExecution timeMemory
688327sharaelongCluedo (IOI10_cluedo)C++17
0 / 100
0 ms216 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...