제출 #1099333

#제출 시각아이디문제언어결과실행 시간메모리
1099333RajCluedo (IOI10_cluedo)C++11
0 / 100
1 ms344 KiB
#include <stdio.h> #include <stdlib.h> #include <string.h> int Theory(int m, int l, int w); void Solve() { int i=1,j=1,k=1; while(Theory(i,j,k)!=0) { if(Theory(i,j,k)==1) i++; else if(Theory(i,j,k)==2) j++; else k++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...