Submission #304348

#TimeUsernameProblemLanguageResultExecution timeMemory
304348MasterTasterCluedo (IOI10_cluedo)C++14
100 / 100
12 ms256 KiB
#include "grader.h" #include "cluedo.h" #include <bits/stdc++.h> using namespace std; void Solve(){ int m, l, v; m=l=v=1; int teorija=Theory(m, l, v); while (teorija) { if (teorija==1) m++; else if (teorija==2) l++; else v++; teorija=Theory(m, l, v); } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...