제출 #1199841

#제출 시각아이디문제언어결과실행 시간메모리
1199841HydrolyzedCluedo (IOI10_cluedo)C++20
100 / 100
3 ms392 KiB
#include "grader.h" #include "cluedo.h" #include <array> void Solve(){ std::array<int, 3> to_try = {1, 1, 1}; while(true) { int r = Theory(to_try[0], to_try[1], to_try[2]); if(r == 0) { break; } to_try[--r]++; } return ; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...