Submission #1192988

#TimeUsernameProblemLanguageResultExecution timeMemory
1192988jecklexCluedo (IOI10_cluedo)C++20
100 / 100
3 ms392 KiB
#include "grader.h"
#include "cluedo.h"
#include <stdio.h>
#include <stdlib.h>

void Solve(){
   int r = 111;
   int a=1,b=1,c=1;

   while (r != 0) {
      r = Theory(a,b,c);
      if (r == 1) a++;
      if (r == 2) b++;
      if (r == 3) c++;
   }
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...