제출 #1284160

#제출 시각아이디문제언어결과실행 시간메모리
1284160muhammad-mutahirCluedo (IOI10_cluedo)C++20
100 / 100
4 ms400 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

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