Submission #688327

# Submission time Handle Problem Language Result Execution time Memory
688327 2023-01-27T10:19:40 Z sharaelong Cluedo (IOI10_cluedo) C++17
0 / 100
0 ms 216 KB
#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 time Memory Grader output
1 Failed 0 ms 208 KB wrong parameter
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 0 ms 216 KB wrong parameter
2 Halted 0 ms 0 KB -