# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1183831 | aminjon__ | Treasure Hunt (CEOI11_tre) | C++17 | 0 ms | 0 KiB |
int current_point;
void init()
{
current_point = 1;
}
void path(int a, int s)
{
current_point += s;
}
int dig(int a, int b)
{
return (a + b + current_point) / 3; /* something stupid */
}