Submission #1305689

#TimeUsernameProblemLanguageResultExecution timeMemory
1305689yus1f_mCluedo (IOI10_cluedo)C++20
100 / 100
6 ms400 KiB
//#pragma GCC optimize("O3") #include <bits/stdc++.h> #include "grader.h" #include "cluedo.h" const int sz=1000000,INF=1000000000; using namespace std; void Solve() { int num,ans1=1,ans2=1,ans3=1; while(true) { num=Theory(ans1,ans2,ans3); if(num==0) { return; } else { if(num==1) { ans1++; } else if(num==2) { ans2++; } else { ans3++; } } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...