Submission #688330

#TimeUsernameProblemLanguageResultExecution timeMemory
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...