Submission #1284196

#TimeUsernameProblemLanguageResultExecution timeMemory
1284196ggillianjiangCluedo (IOI10_cluedo)C++20
100 / 100
4 ms384 KiB
#include "grader.h"
#include "cluedo.h"

using namespace std;

void Solve(){
   int m = 1, l = 1, w = 1, t;
   while(true){
      t = Theory(m, l, w);
      if(t==0) break;
      if(t==1) m++;
      if(t==2) l++;
      if(t==3) w++;
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...