Submission #474002

#TimeUsernameProblemLanguageResultExecution timeMemory
474002ValiAntonieCluedo (IOI10_cluedo)C++14
0 / 100
1 ms200 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int r, a = 1, b = 1, c = 1, ok = 0;
   while(ok != 1){
   r = Theory(a,b,c);
   while(r == 1 && a <= 6){
    a++;
   }
   while(r == 2 && b <= 10){
    b++;
   }
   while(r == 3 && c <= 6){
    c++;
   }
   if(r == 0){
   ok = 1;
   return;
   }
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...