# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
231040 | JooDdae | 역사적 조사 (JOI14_historical) | C++17 | 4075 ms | 15480 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const ll sz = 100000000;
char in_buf[sz];
char out_buf[sz];
inline char read_next()
{
static ll i = sz;
if (i == sz)
{
fread(in_buf, 1, sz, stdin);
i = 0;
}
return in_buf[i++];
}
inline ll read_int()
{
ll r = read_next() - '0';
char ch;
while ((ch = read_next()) >= '0' && ch <= '9')
r = r * 10 + ch - '0';
return r;
}
ll w_idx;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |