Submission #866240

# Submission time Handle Problem Language Result Execution time Memory
866240 2023-10-25T15:52:20 Z ElenaBM Cluedo (IOI10_cluedo) C++17
0 / 100
1 ms 344 KB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
 
using namespace std;
void Solve (){
    int a = 1, b = 1, c = 1;
    int x = Theory (a, b, c);
    while (x != 0){
        if (x == 1) a++;
        if (x== 2) b++;
        else c++;
        x = Theory (a, b, c);
    }
}
# Verdict Execution time Memory Grader output
1 Failed 0 ms 344 KB wrong parameter
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 1 ms 344 KB wrong parameter
2 Halted 0 ms 0 KB -