제출 #1099348

#제출 시각아이디문제언어결과실행 시간메모리
1099348mihaihvhCluedo (IOI10_cluedo)C++14
100 / 100
8 ms356 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; int m = Theory(i, j, k); do { if (m == 1) ++i; if (m == 2) ++j; if (m == 3) ++k; m = Theory(i, j, k); } while (m != 0); return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...