제출 #866235

#제출 시각아이디문제언어결과실행 시간메모리
866235ElenaBMCluedo (IOI10_cluedo)C++17
0 / 100
0 ms344 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...