# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20621 | model_code | Shortcut (IOI16_shortcut) | C11 | 1399 ms | 40184 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// name = shortcut_c.c, type = c.gcc
#include "shortcut_c.h"
#include <stdio.h>
#include <stdlib.h>
typedef long long ll;
typedef struct llpair {
ll fi;
ll se;
} llpair;
#define maxn 1000005
const ll inf = 1e18;
ll x[maxn], d[maxn];
int n, C;
llpair q[maxn];
int ans1, ans2;
llpair mp(ll fi, ll se) {
llpair res;
res.fi = fi;
res.se = se;
return res;
}
ll min(ll a, ll b) {
return a < b ? a : b;
}
# | 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... |
# | 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... |