Submission #518484

#TimeUsernameProblemLanguageResultExecution timeMemory
518484nurlitadfCluedo (IOI10_cluedo)C++17
100 / 100
15 ms256 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int m, l, w;
   m = l = w = 1;

   int r = -1;
   while(r) {
      r = Theory(m, l, w);
      if(r == 1)
         m++;
      if(r == 2)
         l++;
      if(r == 3)
         w++;
   }
   
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...