Submission #895108

#TimeUsernameProblemLanguageResultExecution timeMemory
895108IrateCluedo (IOI10_cluedo)C++14
100 / 100
6 ms596 KiB
#include<bits/stdc++.h> using namespace std; int Theory(int m, int l, int w); void Solve(){ int p[4] = {-1, 1, 1, 1}; int T = Theory(p[1], p[2], p[3]); while(T){ p[T]++; T = Theory(p[1], p[2], p[3]); } } // int main(){ // ios_base::sync_with_stdio(0); // cin.tie(0); // }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...