Submission #241587

#TimeUsernameProblemLanguageResultExecution timeMemory
241587lakshith_Cluedo (IOI10_cluedo)C++14
100 / 100
19 ms384 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"

using namespace std;

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