Submission #402002

#TimeUsernameProblemLanguageResultExecution timeMemory
402002AzimjonCluedo (IOI10_cluedo)C++17
100 / 100
16 ms200 KiB
#include "grader.h" #include "cluedo.h" void Solve() { int m, l, w, os; m = l = w = 1; while (1) { os = Theory(m, l, w); if (os == 0) return; if (os == 1) m++; if (os == 2) l++; if (os == 3) w++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...