# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1199841 | Hydrolyzed | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 392 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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |