Submission #866235

# Submission time Handle Problem Language Result Execution time Memory
866235 2023-10-25T15:49:18 Z ElenaBM Cluedo (IOI10_cluedo) C++17
0 / 100
0 ms 344 KB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
 
using namespace std;
vector<int>a, b, c;
void Solve (){
    a.clear();
    b.clear();
    c.clear();
    for (int i  = 1; i <= 6; ++i){
        a.push_back(i);
        c.push_back(i);
    }
    for (int i = 1; i <= 10; ++i)b.push_back(i);
    int x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1]);
    while (x != 0){
        if (x == 1) a.pop_back();
        if (x== 2) b.pop_back();
        else c.pop_back();
        x = Theory (a[(int)a.size() - 1], b[(int)b.size()-1], c[(int)c.size()-1]);
    }
}
# 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 0 ms 344 KB wrong parameter
2 Halted 0 ms 0 KB -