Submission #787521

#TimeUsernameProblemLanguageResultExecution timeMemory
787521BlagojCluedo (IOI10_cluedo)C++17
100 / 100
10 ms288 KiB
#include <bits/stdc++.h> #include "grader.h" #include "cluedo.h" using namespace std; void Solve(){ int comb[4] = {1, 1, 1, 1}; do { comb[0] = Theory(comb[1], comb[2], comb[3]); if (comb[0] != 0) comb[comb[0]]++; } while (comb[0] != 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...