Submission #1307601

#TimeUsernameProblemLanguageResultExecution timeMemory
13076013lektraCluedo (IOI10_cluedo)C++20
50 / 100
46 ms336 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

void Solve(){
   int r;
   for(int i = 1; i <= 6; ++i){
      for(int j = 1; j <= 10; ++j){
         for(int k = 1; k <= 6; ++k){
            r = Theory(i,j,k);
            if(r == 0) return;
         }
      }
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...