Submission #1132175

#TimeUsernameProblemLanguageResultExecution timeMemory
1132175AMel0nCluedo (IOI10_cluedo)C++20
50 / 100
9 ms392 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int m = 6;
   int l = 10;
   int w = 6;
   while(Theory(m,l,w)) {
      if (Theory(m,l,w) == 1) m--;
      else if(Theory(m,l,w) == 2) l--;
      else if (Theory(m,l,w) == 3) w--;
   }
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...