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