Submission #1111214

#TimeUsernameProblemLanguageResultExecution timeMemory
1111214julia_08Cluedo (IOI10_cluedo)C++17
100 / 100
18 ms504 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

void Solve(){

  int l = 1, r = 1, k = 1;

  int ans = -1;

  while(ans != 0){

    ans = Theory(l, r, k);

    if(ans == 1) l ++;
    if(ans == 2) r ++;
    if(ans == 3) k ++;

  }

}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...