# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20391 | 2017-02-10T17:41:50 Z | 윤지학(#34, gs13068) | 초음속철도 (OJUZ11_rail) | C++ | 143 ms | 29244 KB |
#include <cstdio> #include <algorithm> using namespace std; const int P = 1000000007; pair<int, int> a[200002]; int t[400004]; struct tree { tree *l, *r; int s, e, x, y; } T[800008]; int Tn; void Init(tree *p, int s, int e) { p->s = s; p->e = e; p->x = s == 1 && e == 1; p->y = 1; if (s != e) { Init(p->l = T + ++Tn, s, s + e >> 1); Init(p->r = T + ++Tn, (s + e >> 1) + 1, e); } } void Lazy(tree *p) { p->l->x = ((long long)p->l->x * p->y + p->x) % P; p->l->y = (long long)p->l->y * p->y % P; p->r->x = ((long long)p->r->x * p->y + p->x) % P; p->r->y = (long long)p->r->y * p->y % P; p->y = 1; p->x = 0; } void Mul(tree *p, int e) { if (p->s > e) return; if (p->e == e) { p->x = (p->x << 1) % P; p->y = (p->y << 1) % P; return; } Lazy(p); Mul(p->l, e); Mul(p->r, e); } void Add(tree *p, int s, int e, int x) { if (p->s > e || p->e < s) return; if (s <= p->s && p->e <= e) { p->x = (p->x + x) % P; return; } Lazy(p); Add(p->l, s, e, x); Add(p->r, s, e, x); } int Get(tree *p, int x) { if (p->s == x && p->e == x) return p->x; Lazy(p); return p->r->s > x ? Get(p->l, x) : Get(p->r, x); } int main() { int i, j, k, n, m, r = 0; scanf("%d%d", &t[1], &n); t[0] = 1; for (i = 1; i <= n; i++) { scanf("%d%d", &t[i << 1], &t[i << 1 | 1]); a[i].first = t[i << 1 | 1]; a[i].second = -t[i << 1]; } sort(a + 1, a + n + 1); sort(t, t + n + n + 2); m = unique(t, t + n + n + 2) - t; Init(T, 0, m); for (i = 1; i <= n; i++) { a[i].first = upper_bound(t, t + m, a[i].first) - t; a[i].second = upper_bound(t, t + m, -a[i].second) - t; k = Get(T, a[i].second); if (a[i].first == m) r = (r + k) % P; Mul(T, a[i].second - 1); Add(T, a[i].second, a[i].first, k); } printf("%d", r); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 29244 KB | Output is correct |
2 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Correct | 0 ms | 29244 KB | Output is correct |
6 | Correct | 0 ms | 29244 KB | Output is correct |
7 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Correct | 0 ms | 29244 KB | Output is correct |
10 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Correct | 0 ms | 29244 KB | Output is correct |
14 | Correct | 0 ms | 29244 KB | Output is correct |
15 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
16 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
17 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
18 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 29244 KB | Output is correct |
2 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Correct | 0 ms | 29244 KB | Output is correct |
6 | Correct | 0 ms | 29244 KB | Output is correct |
7 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Correct | 0 ms | 29244 KB | Output is correct |
10 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Correct | 0 ms | 29244 KB | Output is correct |
14 | Correct | 0 ms | 29244 KB | Output is correct |
15 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
16 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
17 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
18 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
19 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
20 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
21 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
22 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
23 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
24 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
25 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
26 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
27 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
28 | Correct | 0 ms | 29244 KB | Output is correct |
29 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
30 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
31 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
32 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
33 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
34 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
35 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Correct | 0 ms | 29244 KB | Output is correct |
4 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Runtime error | 93 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
6 | Runtime error | 109 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
7 | Runtime error | 116 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Runtime error | 116 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
10 | Runtime error | 129 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 53 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Runtime error | 129 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
14 | Correct | 79 ms | 29244 KB | Output is correct |
15 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
16 | Correct | 86 ms | 29244 KB | Output is correct |
17 | Runtime error | 133 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
18 | Runtime error | 143 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
19 | Runtime error | 126 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 29244 KB | Output is correct |
2 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Correct | 0 ms | 29244 KB | Output is correct |
6 | Correct | 0 ms | 29244 KB | Output is correct |
7 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Correct | 0 ms | 29244 KB | Output is correct |
10 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Correct | 0 ms | 29244 KB | Output is correct |
14 | Correct | 0 ms | 29244 KB | Output is correct |
15 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
16 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
17 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
18 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
19 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
20 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
21 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
22 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
23 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
24 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
25 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
26 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
27 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
28 | Correct | 0 ms | 29244 KB | Output is correct |
29 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
30 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
31 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
32 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
33 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
34 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
35 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
36 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
37 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
38 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
39 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
40 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
41 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
42 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
43 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
44 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
45 | Correct | 0 ms | 29244 KB | Output is correct |
46 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
47 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
48 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
49 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
50 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
51 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
52 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
53 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
54 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
55 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 29244 KB | Output is correct |
2 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Correct | 0 ms | 29244 KB | Output is correct |
6 | Correct | 0 ms | 29244 KB | Output is correct |
7 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Correct | 0 ms | 29244 KB | Output is correct |
10 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Correct | 0 ms | 29244 KB | Output is correct |
14 | Correct | 0 ms | 29244 KB | Output is correct |
15 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
16 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
17 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
18 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
19 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
20 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
21 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
22 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
23 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
24 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
25 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
26 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
27 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
28 | Correct | 0 ms | 29244 KB | Output is correct |
29 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
30 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
31 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
32 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
33 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
34 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
35 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
36 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
37 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
38 | Correct | 0 ms | 29244 KB | Output is correct |
39 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
40 | Runtime error | 93 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
41 | Runtime error | 109 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
42 | Runtime error | 116 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
43 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
44 | Runtime error | 116 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
45 | Runtime error | 129 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
46 | Runtime error | 53 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
47 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
48 | Runtime error | 129 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
49 | Correct | 79 ms | 29244 KB | Output is correct |
50 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
51 | Correct | 86 ms | 29244 KB | Output is correct |
52 | Runtime error | 133 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
53 | Runtime error | 143 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
54 | Runtime error | 126 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
55 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
56 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
57 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
58 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
59 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
60 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
61 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
62 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
63 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
64 | Correct | 0 ms | 29244 KB | Output is correct |
65 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
66 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
67 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
68 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
69 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
70 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
71 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
72 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
73 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
74 | Runtime error | 3 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
75 | Runtime error | 143 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
76 | Runtime error | 89 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
77 | Runtime error | 86 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
78 | Runtime error | 69 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
79 | Runtime error | 109 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
80 | Runtime error | 113 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
81 | Runtime error | 0 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
82 | Runtime error | 106 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
83 | Correct | 73 ms | 29244 KB | Output is correct |
84 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
85 | Runtime error | 136 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
86 | Runtime error | 129 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
87 | Runtime error | 76 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
88 | Runtime error | 83 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
89 | Runtime error | 126 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
90 | Runtime error | 123 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
91 | Runtime error | 113 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
92 | Runtime error | 113 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
93 | Runtime error | 126 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
94 | Runtime error | 119 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
95 | Runtime error | 116 ms | 29244 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |