Submission #545590

#TimeUsernameProblemLanguageResultExecution timeMemory
545590jam_xd_Cluedo (IOI10_cluedo)C++17
0 / 100
1 ms208 KiB
#include "grader.h" #include "cluedo.h" #include "bits/stdc++.h" using namespace std; void Solve(){ int murderer, location, weapon; murderer = location = weapon = 1; int wrong = -1; while(wrong != 0){ wrong = Theory(murderer, location, weapon); if(wrong == 1)wrong++; if(wrong == 2)location++; if(wrong == 3)weapon++; } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...