Submission #956019

#TimeUsernameProblemLanguageResultExecution timeMemory
956019emad234Cluedo (IOI10_cluedo)C++17
100 / 100
7 ms540 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define pii pair<ll, ll>
const ll mod = 1e9 + 7;
const ll mxN = 1e7 + 5;
using namespace std;
void Solve(){
   int i = 1,j = 1,k = 1;
   while(1){
      int th = Theory(i,j,k);
      if(th == 0) return;
      if(th == 1) i++;
      if(th == 2) j++;
      if(th == 3) k++;
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...