Submission #715500

#TimeUsernameProblemLanguageResultExecution timeMemory
715500vjudge1Cluedo (IOI10_cluedo)C++17
100 / 100
15 ms208 KiB
#include "grader.h"
#include "cluedo.h"

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