Submission #927226

#TimeUsernameProblemLanguageResultExecution timeMemory
927226vjudge1Cluedo (IOI10_cluedo)C++11
0 / 100
0 ms432 KiB
#include <bits/stdc++.h>
using namespace std;

int theorize(int m, int l, int w) {
    cout << "Theory(" << m << ',' << l << ',' << w << ")" << endl;
    int ans;
    cin >> ans;
    return ans;
}

void Solve() {
    for(int i = 1; i <= 6; i++) {
        for(int j = 1; j <= 10; j++) {
            for(int k = 1; k <= 6; k++) {
                if(theorize(i, j, k) == 0) return;
            }
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...