Submission #600871

#TimeUsernameProblemLanguageResultExecution timeMemory
600871l_rehoCluedo (IOI10_cluedo)C++14
100 / 100
12 ms208 KiB
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "grader.h"
#include "cluedo.h"


int Theory(int m, int l,  int w);

void Solve(){
	
	int i = 1, j = 1, k = 1;
	
	int ret = 1;
	while(ret){
		ret = Theory(i, j, k);
		if(ret == 1) i++;
		else if(ret == 2) j++;
		else if(ret == 3) k++;
	}
	
	
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...