Submission #861222

#TimeUsernameProblemLanguageResultExecution timeMemory
861222AriadnaCluedo (IOI10_cluedo)C++14
100 / 100
5 ms596 KiB
#include "cluedo.h" #include "grader.h" using namespace std; void Solve() { int murderer = 1, location = 1, weapon = 1; while (murderer <= 6 && location <= 10 && weapon <= 6) { int ans = Theory(murderer, location, weapon); if (ans == 1) ++murderer; else if (ans == 2) ++location; else if (ans == 3) ++weapon; else return; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...