Submission #717645

#TimeUsernameProblemLanguageResultExecution timeMemory
717645AnjaJCluedo (IOI10_cluedo)C++14
100 / 100
14 ms208 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int murd=1, loc=1, weap=1;
   int th;
   while(true)
   {
       th = Theory(murd, loc, weap);
        if(th==1)
           murd++;
        else if(th==2)
            loc++;
        else if(th==3)
            weap++;
        else
            return;
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...