Submission #1174935

#TimeUsernameProblemLanguageResultExecution timeMemory
1174935vahagngCluedo (IOI10_cluedo)C++20
0 / 100
1 ms408 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;

void Solve(){
   for(int i = 1; i <= 6; i++){
      for(int j = 1; j <= 10; j++){
         for(int z = 1; z <= 6; z++){
            if(Theory(i, j ,z) == 0){
               cout << i << ' ' << j << ' ' << z << '\n';
               exit(0);
            }
         }
      }
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...