#include "bits/stdc++.h"
using namespace std;
#define int long long
const int MAXN = 2.5e5 + 10;
const int MOD = 1e9 + 7;
mt19937_64 rng((int)std::chrono::steady_clock::now().time_since_epoch().count());
int rnd(int x, int y) {
int u = uniform_int_distribution<int>(x, y)(rng);
return u;
}
int bm(int b, int p) { // bigmod
if(p==0) return 1;
int r = bm(b, p/2);
if(p&1) return (((r*r) % MOD) * b) % MOD;
return (r*r) % MOD;
}
int N, M, Q;
struct segtree_beats {
bool cmp(long long x, long long y) { return x > y; }
int stok;
const long long extr = 2e18;
struct node {
long long max1, max2, maxc;
long long min1, min2, minc;
long long lazy, sum;
long long l, r;
};
vector<node> a;
void pushtag_max(int idx, long long val) {
if(val >= a[idx].max1) return;
a[idx].sum -= (a[idx].max1 - val) * a[idx].maxc;
a[idx].max1 = val;
if(a[idx].l == a[idx].r) {
a[idx].min1 = val;
}
else {
if(a[idx].min1 >= val) {
a[idx].min1 = val;
a[idx].min2 = extr;
a[idx].minc = a[idx].r - a[idx].l + 1;
}
else if(a[idx].min2 > val && a[idx].min2 != extr) {
a[idx].min2 = val;
}
}
}
void pushtag_min(int idx, long long val) {
if(val <= a[idx].min1) return;
a[idx].sum += (val - a[idx].min1) * a[idx].minc;
a[idx].min1 = val;
if(a[idx].l == a[idx].r) {
a[idx].max1 = val;
}
else {
if(a[idx].max1 <= val) {
a[idx].max1 = val;
a[idx].max2 = -extr;
a[idx].maxc = a[idx].r - a[idx].l + 1;
}
else if(a[idx].max2 < val && a[idx].max2 != -extr) {
a[idx].max2 = val;
}
}
}
void pushtag_add(int idx, long long val) {
a[idx].max1 += val;
if(a[idx].max2 != -extr) a[idx].max2 += val;
a[idx].min1 += val;
if(a[idx].min2 != extr) a[idx].min2 += val;
a[idx].lazy += val;
a[idx].sum += val * (a[idx].r - a[idx].l + 1);
}
void pushdown(int idx) {
pushtag_add(2*idx+1, a[idx].lazy);
pushtag_add(2*idx+2, a[idx].lazy);
a[idx].lazy = 0;
pushtag_max(2*idx+1, a[idx].max1);
pushtag_max(2*idx+2, a[idx].max1);
pushtag_min(2*idx+1, a[idx].min1);
pushtag_min(2*idx+2, a[idx].min1);
}
void pushup(int idx) {
long long max1, max2, maxc;
long long min1, min2, minc;
long long lazy, sum;
long long l, r;
a[idx].max1 = max(a[2*idx+1].max1, a[2*idx+2].max1);
a[idx].max2 = (a[2*idx+1].max1 == a[2*idx+2].max1 ?
max(a[2*idx+1].max2, a[2*idx+2].max2) :
(a[2*idx+1].max1 < a[2*idx+2].max1 ?
max(a[2*idx+1].max1, a[2*idx+2].max2) :
max(a[2*idx+1].max2, a[2*idx+2].max1)
));
a[idx].maxc = (a[2*idx+1].max1 == a[2*idx+2].max1 ?
a[2*idx+1].maxc + a[2*idx+2].maxc :
(a[2*idx+1].max1 < a[2*idx+2].max1 ?
a[2*idx+2].maxc :
a[2*idx+1].maxc)
);
a[idx].min1 = min(a[2*idx+1].min1, a[2*idx+2].min1);
a[idx].min2 = (a[2*idx+1].min1 == a[2*idx+2].min1 ?
min(a[2*idx+1].min2, a[2*idx+2].min2) :
(a[2*idx+1].min1 > a[2*idx+2].min1 ?
min(a[2*idx+1].min1, a[2*idx+2].min2) :
min(a[2*idx+1].min2, a[2*idx+2].min1)
));
a[idx].minc = (a[2*idx+1].min1 == a[2*idx+2].min1 ?
a[2*idx+1].minc + a[2*idx+2].minc :
(a[2*idx+1].min1 > a[2*idx+2].min1 ?
a[2*idx+2].minc :
a[2*idx+1].minc)
);
a[idx].sum = a[2*idx+1].sum + a[2*idx+2].sum;
}
void init1(int l, int r, int idx, long long val) {
a[idx].l = l, a[idx].r = r;
if(l == r) {
a[idx].max1 = a[idx].min1 = val;
a[idx].max2 = -extr;
a[idx].min2 = extr;
a[idx].maxc = a[idx].minc = 1;
a[idx].lazy = 0;
a[idx].sum = val;
return;
}
int mid = (l+r) >> 1;
init1(l, mid, 2*idx+1, val);
init1(mid+1, r, 2*idx+2, val);
pushup(idx);
}
void u1(int l, int r, int constl, int constr, int idx, long long v) {
if(v >= a[idx].max1) return;
if(l<=constl && constr<=r && v>a[idx].max2) {
pushtag_max(idx, v);
return;
}
pushdown(idx);
int mid = (constl+constr) >> 1;
if(mid < l || r < constl) u1(l, r, mid+1, constr, 2*idx+2, v);
else if(constr < l || r < mid+1) u1(l, r, constl, mid, 2*idx+1, v);
else {
u1(l, r, constl, mid, 2*idx+1, v);
u1(l, r, mid+1, constr, 2*idx+2, v);
}
pushup(idx);
}
void u2(int l, int r, int constl, int constr, int idx, long long v) {
if(v <= a[idx].min1) return;
if(l<=constl && constr<=r && v<a[idx].min2) {
pushtag_min(idx, v);
return;
}
pushdown(idx);
int mid = (constl+constr) >> 1;
if(mid < l || r < constl) u2(l, r, mid+1, constr, 2*idx+2, v);
else if(constr < l || r < mid+1) u2(l, r, constl, mid, 2*idx+1, v);
else {
u2(l, r, constl, mid, 2*idx+1, v);
u2(l, r, mid+1, constr, 2*idx+2, v);
}
pushup(idx);
}
void u3(int l, int r, int constl, int constr, int idx, long long v) {
if(l <= constl && constr <= r) {
pushtag_add(idx, v);
return;
}
pushdown(idx);
int mid = (constl+constr) >> 1;
if(mid < l || r < constl) u3(l, r, mid+1, constr, 2*idx+2, v);
else if(constr < l || r < mid+1) u3(l, r, constl, mid, 2*idx+1, v);
else {
u3(l, r, constl, mid, 2*idx+1, v);
u3(l, r, mid+1, constr, 2*idx+2, v);
}
pushup(idx);
}
long long qu(int l, int r, int constl, int constr, int idx) {
if(l <= constl && constr <= r) {
return a[idx].sum;
}
pushdown(idx);
int mid = (constl+constr) >> 1;
if(mid < l || r < constl) return qu(l, r, mid+1, constr, 2*idx+2);
else if(constr < l || r < mid+1) return qu(l, r, constl, mid, 2*idx+1);
else {
return qu(l, r, constl, mid, 2*idx+1) + qu(l, r, mid+1, constr, 2*idx+2);
}
}
public:
void resize(int k) {
stok = k;
a.resize(4*k + 10);
}
void init(long long v) { // Initialize everything to v
init1(0, stok, 0, v);
}
void min_with(int l, int r, long long v) {
u1(l, r, 0, stok, 0, v);
}
void max_with(int l, int r, long long v) {
u2(l, r, 0, stok, 0, v);
}
void range_add(int l, int r, long long v) {
u3(l, r, 0, stok, 0, v);
}
long long query_sum(int l, int r) {
return (long long)qu(l, r, 0, stok, 0);
}
};
struct _1m {
segtree_beats a;
public:
void join(int l, int r, int c, int k) {
a.range_add(l, r, k);
}
void leave(int l, int r, int k) {
a.range_add(l, r, -k);
a.max_with(l, r, 0);
}
int service(int shop, int b) {
return (a.query_sum(shop, shop) >= b ? 1 : 0);
}
};
void solve_1m() {
_1m ar;
ar.a.resize(N);
ar.a.init(0);
while(Q--) {
int t;
cin >> t;
if(t == 1) {
int l, r, c, k;
cin >> l >> r >> c >> k;
ar.join(l, r, c, k);
}
else if(t == 2) {
int l, r, k;
cin >> l >> r >> k;
ar.leave(l, r, k);
}
else {
int a, b;
cin >> a >> b;
cout << ar.service(a, b) << "\n";
}
}
}
segtree_beats stb;
vector<pair<int, pair<int, int> > > v[4*MAXN];
vector<int> w[4*MAXN];
int p[4*MAXN];
int ti=0;
int rp[MAXN];
void update(int l, int r, int constl, int constr, int idx, int c, int k) {
if(l<=constl && constr<=r) {
v[idx].push_back({ti, {c, k}});
w[idx].push_back(w[idx].empty() ? k : w[idx][w[idx].size() - 1] + k);
return;
}
int mid = (constl+constr) >> 1;
if(mid < l || r < constl) update(l, r, mid+1, constr, 2*idx+2, c, k);
else if(constr < l || r < mid+1) update(l, r, constl, mid, 2*idx+1, c, k);
else {
update(l, r, constl, mid, 2*idx+1, c, k);
update(l, r, mid+1, constr, 2*idx+2, c, k);
}
}
void build(int l, int r, int idx) {
if(l == r) {
rp[l] = idx;
return;
}
int mid = (l+r) >> 1;
build(l, mid, 2*idx+1);
build(mid+1, r, 2*idx+2);
p[2*idx+1] = p[2*idx+2] = idx;
}
void join(int l, int r, int c, int k) {
ti++;
stb.range_add(l, r, k);
update(l, r, 0, MAXN-1, 0, c, k);
}
void leave(int l, int r, int k) {
stb.range_add(l, r, -k);
stb.max_with(l, r, 0);
}
int service(int a, int b) { // log^3 n
int cur = rp[a];
vector<int> q;
int sum = 0;
while(1) {
q.push_back(cur);
if(w[cur].size()) sum += w[cur][w[cur].size() - 1];
if(cur == 0) break;
cur = p[cur];
}
b += sum - stb.query_sum(a, a);
if(b > sum) return 0;
int lb = 0, rb = ti;
while(lb < rb) { // log n
int mid = (lb+rb) >> 1;
int tot = 0;
for(int x: q) { // log n
if(w[x].empty()) continue;
int lb2 = 0, rb2 = w[x].size() - 1;
while(lb2 < rb2) { // log n
int mid2 = (lb2 + rb2 + 1) >> 1;
if(v[x][mid2].first <= mid) {
lb2 = mid2;
}
else {
rb2 = mid2 - 1;
}
}
if(v[x][lb2].first <= mid) {
tot += w[x][lb2];
}
}
if(tot >= b) rb = mid;
else lb = mid + 1;
}
for(int x: q) {
if(w[x].empty()) continue;
int lb2 = 0, rb2 = w[x].size() - 1;
while(lb2 < rb2) { // log n
int mid2 = (lb2 + rb2 + 1) >> 1;
if(v[x][mid2].first <= lb) {
lb2 = mid2;
}
else {
rb2 = mid2 - 1;
}
}
if(v[x][lb2].first == lb) {
return v[x][lb2].second.first;
}
}
}
void solve(int tc) {
scanf("%lld %lld %lld", &N, &M, &Q);
// cin >> N >> M >> Q;
if(M == 1) { // Subtask 4
solve_1m();
return;
}
stb.resize(N);
stb.init(0);
build(0, MAXN-1, 0);
while(Q--) {
int t;
scanf("%lld", &t);
//cin >> t;
if(t == 1) {
int l, r, c, k;
scanf("%lld %lld %lld %lld", &l, &r, &c, &k);
//cin >> l >> r >> c >> k;
join(l, r, c, k);
}
else if(t == 2) {
int l, r, k;
scanf("%lld %lld %lld", &l, &r, &k);
//cin >> l >> r >> k;
leave(l, r, k);
}
else {
int a, b;
scanf("%lld %lld", &a, &b);
//cin >> a >> b;
cout << service(a, b) << "\n";
}
}
}
int32_t main(){
ios::sync_with_stdio(0); cin.tie(0);
int t = 1; //cin >> t;
for(int i=1; i<=t; i++) {
solve(i);
}
}
Compilation message
foodcourt.cpp: In member function 'void segtree_beats::pushup(long long int)':
foodcourt.cpp:85:19: warning: unused variable 'max1' [-Wunused-variable]
85 | long long max1, max2, maxc;
| ^~~~
foodcourt.cpp:85:25: warning: unused variable 'max2' [-Wunused-variable]
85 | long long max1, max2, maxc;
| ^~~~
foodcourt.cpp:85:31: warning: unused variable 'maxc' [-Wunused-variable]
85 | long long max1, max2, maxc;
| ^~~~
foodcourt.cpp:86:19: warning: unused variable 'min1' [-Wunused-variable]
86 | long long min1, min2, minc;
| ^~~~
foodcourt.cpp:86:25: warning: unused variable 'min2' [-Wunused-variable]
86 | long long min1, min2, minc;
| ^~~~
foodcourt.cpp:86:31: warning: unused variable 'minc' [-Wunused-variable]
86 | long long min1, min2, minc;
| ^~~~
foodcourt.cpp:87:19: warning: unused variable 'lazy' [-Wunused-variable]
87 | long long lazy, sum;
| ^~~~
foodcourt.cpp:87:25: warning: unused variable 'sum' [-Wunused-variable]
87 | long long lazy, sum;
| ^~~
foodcourt.cpp:88:19: warning: unused variable 'l' [-Wunused-variable]
88 | long long l, r;
| ^
foodcourt.cpp:88:22: warning: unused variable 'r' [-Wunused-variable]
88 | long long l, r;
| ^
foodcourt.cpp: In function 'long long int service(long long int, long long int)':
foodcourt.cpp:293:17: warning: control reaches end of non-void function [-Wreturn-type]
293 | vector<int> q;
| ^
foodcourt.cpp: In function 'void solve(long long int)':
foodcourt.cpp:345:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
345 | scanf("%lld %lld %lld", &N, &M, &Q);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
foodcourt.cpp:356:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
356 | scanf("%lld", &t);
| ~~~~~^~~~~~~~~~~~
foodcourt.cpp:360:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
360 | scanf("%lld %lld %lld %lld", &l, &r, &c, &k);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
foodcourt.cpp:366:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
366 | scanf("%lld %lld %lld", &l, &r, &k);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
foodcourt.cpp:372:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
372 | scanf("%lld %lld", &a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
53956 KB |
Output is correct |
2 |
Correct |
38 ms |
54276 KB |
Output is correct |
3 |
Correct |
27 ms |
54208 KB |
Output is correct |
4 |
Correct |
29 ms |
54352 KB |
Output is correct |
5 |
Correct |
26 ms |
53388 KB |
Output is correct |
6 |
Correct |
26 ms |
53380 KB |
Output is correct |
7 |
Correct |
29 ms |
54348 KB |
Output is correct |
8 |
Correct |
31 ms |
54256 KB |
Output is correct |
9 |
Correct |
30 ms |
54348 KB |
Output is correct |
10 |
Correct |
36 ms |
54304 KB |
Output is correct |
11 |
Correct |
38 ms |
54276 KB |
Output is correct |
12 |
Correct |
29 ms |
54348 KB |
Output is correct |
13 |
Correct |
27 ms |
54348 KB |
Output is correct |
14 |
Correct |
28 ms |
54376 KB |
Output is correct |
15 |
Correct |
28 ms |
54320 KB |
Output is correct |
16 |
Correct |
29 ms |
54348 KB |
Output is correct |
17 |
Correct |
29 ms |
54004 KB |
Output is correct |
18 |
Correct |
37 ms |
54276 KB |
Output is correct |
19 |
Correct |
30 ms |
53964 KB |
Output is correct |
20 |
Correct |
33 ms |
54136 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
53956 KB |
Output is correct |
2 |
Correct |
38 ms |
54276 KB |
Output is correct |
3 |
Correct |
27 ms |
54208 KB |
Output is correct |
4 |
Correct |
29 ms |
54352 KB |
Output is correct |
5 |
Correct |
26 ms |
53388 KB |
Output is correct |
6 |
Correct |
26 ms |
53380 KB |
Output is correct |
7 |
Correct |
29 ms |
54348 KB |
Output is correct |
8 |
Correct |
31 ms |
54256 KB |
Output is correct |
9 |
Correct |
30 ms |
54348 KB |
Output is correct |
10 |
Correct |
36 ms |
54304 KB |
Output is correct |
11 |
Correct |
38 ms |
54276 KB |
Output is correct |
12 |
Correct |
29 ms |
54348 KB |
Output is correct |
13 |
Correct |
27 ms |
54348 KB |
Output is correct |
14 |
Correct |
28 ms |
54376 KB |
Output is correct |
15 |
Correct |
28 ms |
54320 KB |
Output is correct |
16 |
Correct |
29 ms |
54348 KB |
Output is correct |
17 |
Correct |
29 ms |
54004 KB |
Output is correct |
18 |
Correct |
37 ms |
54276 KB |
Output is correct |
19 |
Correct |
30 ms |
53964 KB |
Output is correct |
20 |
Correct |
33 ms |
54136 KB |
Output is correct |
21 |
Correct |
29 ms |
54216 KB |
Output is correct |
22 |
Correct |
29 ms |
54208 KB |
Output is correct |
23 |
Correct |
29 ms |
54092 KB |
Output is correct |
24 |
Correct |
30 ms |
54440 KB |
Output is correct |
25 |
Correct |
31 ms |
53308 KB |
Output is correct |
26 |
Correct |
26 ms |
53304 KB |
Output is correct |
27 |
Correct |
32 ms |
54348 KB |
Output is correct |
28 |
Correct |
37 ms |
54348 KB |
Output is correct |
29 |
Correct |
31 ms |
54256 KB |
Output is correct |
30 |
Correct |
31 ms |
54356 KB |
Output is correct |
31 |
Correct |
30 ms |
54228 KB |
Output is correct |
32 |
Correct |
31 ms |
54256 KB |
Output is correct |
33 |
Correct |
28 ms |
54220 KB |
Output is correct |
34 |
Correct |
28 ms |
54352 KB |
Output is correct |
35 |
Correct |
31 ms |
54112 KB |
Output is correct |
36 |
Correct |
28 ms |
54340 KB |
Output is correct |
37 |
Correct |
27 ms |
53960 KB |
Output is correct |
38 |
Correct |
28 ms |
54100 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
195 ms |
76844 KB |
Output is correct |
2 |
Correct |
203 ms |
78332 KB |
Output is correct |
3 |
Correct |
192 ms |
77892 KB |
Output is correct |
4 |
Correct |
198 ms |
77888 KB |
Output is correct |
5 |
Correct |
222 ms |
79720 KB |
Output is correct |
6 |
Correct |
210 ms |
79744 KB |
Output is correct |
7 |
Correct |
60 ms |
54396 KB |
Output is correct |
8 |
Correct |
66 ms |
54976 KB |
Output is correct |
9 |
Correct |
180 ms |
77120 KB |
Output is correct |
10 |
Correct |
194 ms |
77268 KB |
Output is correct |
11 |
Correct |
238 ms |
77196 KB |
Output is correct |
12 |
Correct |
188 ms |
77220 KB |
Output is correct |
13 |
Correct |
177 ms |
71828 KB |
Output is correct |
14 |
Correct |
193 ms |
79056 KB |
Output is correct |
15 |
Correct |
194 ms |
74496 KB |
Output is correct |
16 |
Correct |
212 ms |
81220 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
579 ms |
117684 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
53956 KB |
Output is correct |
2 |
Correct |
38 ms |
54276 KB |
Output is correct |
3 |
Correct |
27 ms |
54208 KB |
Output is correct |
4 |
Correct |
29 ms |
54352 KB |
Output is correct |
5 |
Correct |
26 ms |
53388 KB |
Output is correct |
6 |
Correct |
26 ms |
53380 KB |
Output is correct |
7 |
Correct |
29 ms |
54348 KB |
Output is correct |
8 |
Correct |
31 ms |
54256 KB |
Output is correct |
9 |
Correct |
30 ms |
54348 KB |
Output is correct |
10 |
Correct |
36 ms |
54304 KB |
Output is correct |
11 |
Correct |
38 ms |
54276 KB |
Output is correct |
12 |
Correct |
29 ms |
54348 KB |
Output is correct |
13 |
Correct |
27 ms |
54348 KB |
Output is correct |
14 |
Correct |
28 ms |
54376 KB |
Output is correct |
15 |
Correct |
28 ms |
54320 KB |
Output is correct |
16 |
Correct |
29 ms |
54348 KB |
Output is correct |
17 |
Correct |
29 ms |
54004 KB |
Output is correct |
18 |
Correct |
37 ms |
54276 KB |
Output is correct |
19 |
Correct |
30 ms |
53964 KB |
Output is correct |
20 |
Correct |
33 ms |
54136 KB |
Output is correct |
21 |
Correct |
195 ms |
76844 KB |
Output is correct |
22 |
Correct |
203 ms |
78332 KB |
Output is correct |
23 |
Correct |
192 ms |
77892 KB |
Output is correct |
24 |
Correct |
198 ms |
77888 KB |
Output is correct |
25 |
Correct |
222 ms |
79720 KB |
Output is correct |
26 |
Correct |
210 ms |
79744 KB |
Output is correct |
27 |
Correct |
60 ms |
54396 KB |
Output is correct |
28 |
Correct |
66 ms |
54976 KB |
Output is correct |
29 |
Correct |
180 ms |
77120 KB |
Output is correct |
30 |
Correct |
194 ms |
77268 KB |
Output is correct |
31 |
Correct |
238 ms |
77196 KB |
Output is correct |
32 |
Correct |
188 ms |
77220 KB |
Output is correct |
33 |
Correct |
177 ms |
71828 KB |
Output is correct |
34 |
Correct |
193 ms |
79056 KB |
Output is correct |
35 |
Correct |
194 ms |
74496 KB |
Output is correct |
36 |
Correct |
212 ms |
81220 KB |
Output is correct |
37 |
Correct |
274 ms |
84124 KB |
Output is correct |
38 |
Correct |
284 ms |
88548 KB |
Output is correct |
39 |
Correct |
59 ms |
54396 KB |
Output is correct |
40 |
Correct |
66 ms |
54996 KB |
Output is correct |
41 |
Correct |
306 ms |
89520 KB |
Output is correct |
42 |
Correct |
317 ms |
89720 KB |
Output is correct |
43 |
Correct |
354 ms |
89592 KB |
Output is correct |
44 |
Correct |
323 ms |
89548 KB |
Output is correct |
45 |
Correct |
298 ms |
89628 KB |
Output is correct |
46 |
Correct |
312 ms |
89720 KB |
Output is correct |
47 |
Correct |
141 ms |
90444 KB |
Output is correct |
48 |
Correct |
194 ms |
88012 KB |
Output is correct |
49 |
Correct |
221 ms |
78952 KB |
Output is correct |
50 |
Correct |
317 ms |
87548 KB |
Output is correct |
51 |
Correct |
334 ms |
90292 KB |
Output is correct |
52 |
Correct |
383 ms |
90188 KB |
Output is correct |
53 |
Correct |
157 ms |
77056 KB |
Output is correct |
54 |
Correct |
199 ms |
81216 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
405 ms |
90984 KB |
Output is correct |
2 |
Correct |
427 ms |
89708 KB |
Output is correct |
3 |
Correct |
457 ms |
93676 KB |
Output is correct |
4 |
Correct |
326 ms |
87632 KB |
Output is correct |
5 |
Correct |
402 ms |
91436 KB |
Output is correct |
6 |
Correct |
431 ms |
94624 KB |
Output is correct |
7 |
Correct |
89 ms |
54652 KB |
Output is correct |
8 |
Correct |
82 ms |
55224 KB |
Output is correct |
9 |
Correct |
231 ms |
97000 KB |
Output is correct |
10 |
Correct |
157 ms |
88136 KB |
Output is correct |
11 |
Correct |
225 ms |
94244 KB |
Output is correct |
12 |
Correct |
258 ms |
94096 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
53956 KB |
Output is correct |
2 |
Correct |
38 ms |
54276 KB |
Output is correct |
3 |
Correct |
27 ms |
54208 KB |
Output is correct |
4 |
Correct |
29 ms |
54352 KB |
Output is correct |
5 |
Correct |
26 ms |
53388 KB |
Output is correct |
6 |
Correct |
26 ms |
53380 KB |
Output is correct |
7 |
Correct |
29 ms |
54348 KB |
Output is correct |
8 |
Correct |
31 ms |
54256 KB |
Output is correct |
9 |
Correct |
30 ms |
54348 KB |
Output is correct |
10 |
Correct |
36 ms |
54304 KB |
Output is correct |
11 |
Correct |
38 ms |
54276 KB |
Output is correct |
12 |
Correct |
29 ms |
54348 KB |
Output is correct |
13 |
Correct |
27 ms |
54348 KB |
Output is correct |
14 |
Correct |
28 ms |
54376 KB |
Output is correct |
15 |
Correct |
28 ms |
54320 KB |
Output is correct |
16 |
Correct |
29 ms |
54348 KB |
Output is correct |
17 |
Correct |
29 ms |
54004 KB |
Output is correct |
18 |
Correct |
37 ms |
54276 KB |
Output is correct |
19 |
Correct |
30 ms |
53964 KB |
Output is correct |
20 |
Correct |
33 ms |
54136 KB |
Output is correct |
21 |
Correct |
29 ms |
54216 KB |
Output is correct |
22 |
Correct |
29 ms |
54208 KB |
Output is correct |
23 |
Correct |
29 ms |
54092 KB |
Output is correct |
24 |
Correct |
30 ms |
54440 KB |
Output is correct |
25 |
Correct |
31 ms |
53308 KB |
Output is correct |
26 |
Correct |
26 ms |
53304 KB |
Output is correct |
27 |
Correct |
32 ms |
54348 KB |
Output is correct |
28 |
Correct |
37 ms |
54348 KB |
Output is correct |
29 |
Correct |
31 ms |
54256 KB |
Output is correct |
30 |
Correct |
31 ms |
54356 KB |
Output is correct |
31 |
Correct |
30 ms |
54228 KB |
Output is correct |
32 |
Correct |
31 ms |
54256 KB |
Output is correct |
33 |
Correct |
28 ms |
54220 KB |
Output is correct |
34 |
Correct |
28 ms |
54352 KB |
Output is correct |
35 |
Correct |
31 ms |
54112 KB |
Output is correct |
36 |
Correct |
28 ms |
54340 KB |
Output is correct |
37 |
Correct |
27 ms |
53960 KB |
Output is correct |
38 |
Correct |
28 ms |
54100 KB |
Output is correct |
39 |
Correct |
195 ms |
76844 KB |
Output is correct |
40 |
Correct |
203 ms |
78332 KB |
Output is correct |
41 |
Correct |
192 ms |
77892 KB |
Output is correct |
42 |
Correct |
198 ms |
77888 KB |
Output is correct |
43 |
Correct |
222 ms |
79720 KB |
Output is correct |
44 |
Correct |
210 ms |
79744 KB |
Output is correct |
45 |
Correct |
60 ms |
54396 KB |
Output is correct |
46 |
Correct |
66 ms |
54976 KB |
Output is correct |
47 |
Correct |
180 ms |
77120 KB |
Output is correct |
48 |
Correct |
194 ms |
77268 KB |
Output is correct |
49 |
Correct |
238 ms |
77196 KB |
Output is correct |
50 |
Correct |
188 ms |
77220 KB |
Output is correct |
51 |
Correct |
177 ms |
71828 KB |
Output is correct |
52 |
Correct |
193 ms |
79056 KB |
Output is correct |
53 |
Correct |
194 ms |
74496 KB |
Output is correct |
54 |
Correct |
212 ms |
81220 KB |
Output is correct |
55 |
Correct |
274 ms |
84124 KB |
Output is correct |
56 |
Correct |
284 ms |
88548 KB |
Output is correct |
57 |
Correct |
59 ms |
54396 KB |
Output is correct |
58 |
Correct |
66 ms |
54996 KB |
Output is correct |
59 |
Correct |
306 ms |
89520 KB |
Output is correct |
60 |
Correct |
317 ms |
89720 KB |
Output is correct |
61 |
Correct |
354 ms |
89592 KB |
Output is correct |
62 |
Correct |
323 ms |
89548 KB |
Output is correct |
63 |
Correct |
298 ms |
89628 KB |
Output is correct |
64 |
Correct |
312 ms |
89720 KB |
Output is correct |
65 |
Correct |
141 ms |
90444 KB |
Output is correct |
66 |
Correct |
194 ms |
88012 KB |
Output is correct |
67 |
Correct |
221 ms |
78952 KB |
Output is correct |
68 |
Correct |
317 ms |
87548 KB |
Output is correct |
69 |
Correct |
334 ms |
90292 KB |
Output is correct |
70 |
Correct |
383 ms |
90188 KB |
Output is correct |
71 |
Correct |
157 ms |
77056 KB |
Output is correct |
72 |
Correct |
199 ms |
81216 KB |
Output is correct |
73 |
Correct |
405 ms |
90984 KB |
Output is correct |
74 |
Correct |
427 ms |
89708 KB |
Output is correct |
75 |
Correct |
457 ms |
93676 KB |
Output is correct |
76 |
Correct |
326 ms |
87632 KB |
Output is correct |
77 |
Correct |
402 ms |
91436 KB |
Output is correct |
78 |
Correct |
431 ms |
94624 KB |
Output is correct |
79 |
Correct |
89 ms |
54652 KB |
Output is correct |
80 |
Correct |
82 ms |
55224 KB |
Output is correct |
81 |
Correct |
231 ms |
97000 KB |
Output is correct |
82 |
Correct |
157 ms |
88136 KB |
Output is correct |
83 |
Correct |
225 ms |
94244 KB |
Output is correct |
84 |
Correct |
258 ms |
94096 KB |
Output is correct |
85 |
Correct |
293 ms |
81760 KB |
Output is correct |
86 |
Correct |
341 ms |
87588 KB |
Output is correct |
87 |
Correct |
305 ms |
90948 KB |
Output is correct |
88 |
Correct |
407 ms |
94592 KB |
Output is correct |
89 |
Correct |
221 ms |
79984 KB |
Output is correct |
90 |
Correct |
338 ms |
89896 KB |
Output is correct |
91 |
Correct |
312 ms |
79580 KB |
Output is correct |
92 |
Correct |
245 ms |
79172 KB |
Output is correct |
93 |
Correct |
362 ms |
89740 KB |
Output is correct |
94 |
Correct |
356 ms |
89880 KB |
Output is correct |
95 |
Correct |
365 ms |
87460 KB |
Output is correct |
96 |
Correct |
321 ms |
90016 KB |
Output is correct |
97 |
Correct |
386 ms |
89844 KB |
Output is correct |
98 |
Correct |
304 ms |
81160 KB |
Output is correct |
99 |
Correct |
209 ms |
90576 KB |
Output is correct |
100 |
Correct |
181 ms |
82936 KB |
Output is correct |
101 |
Correct |
208 ms |
88092 KB |
Output is correct |
102 |
Correct |
286 ms |
84068 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
53956 KB |
Output is correct |
2 |
Correct |
38 ms |
54276 KB |
Output is correct |
3 |
Correct |
27 ms |
54208 KB |
Output is correct |
4 |
Correct |
29 ms |
54352 KB |
Output is correct |
5 |
Correct |
26 ms |
53388 KB |
Output is correct |
6 |
Correct |
26 ms |
53380 KB |
Output is correct |
7 |
Correct |
29 ms |
54348 KB |
Output is correct |
8 |
Correct |
31 ms |
54256 KB |
Output is correct |
9 |
Correct |
30 ms |
54348 KB |
Output is correct |
10 |
Correct |
36 ms |
54304 KB |
Output is correct |
11 |
Correct |
38 ms |
54276 KB |
Output is correct |
12 |
Correct |
29 ms |
54348 KB |
Output is correct |
13 |
Correct |
27 ms |
54348 KB |
Output is correct |
14 |
Correct |
28 ms |
54376 KB |
Output is correct |
15 |
Correct |
28 ms |
54320 KB |
Output is correct |
16 |
Correct |
29 ms |
54348 KB |
Output is correct |
17 |
Correct |
29 ms |
54004 KB |
Output is correct |
18 |
Correct |
37 ms |
54276 KB |
Output is correct |
19 |
Correct |
30 ms |
53964 KB |
Output is correct |
20 |
Correct |
33 ms |
54136 KB |
Output is correct |
21 |
Correct |
29 ms |
54216 KB |
Output is correct |
22 |
Correct |
29 ms |
54208 KB |
Output is correct |
23 |
Correct |
29 ms |
54092 KB |
Output is correct |
24 |
Correct |
30 ms |
54440 KB |
Output is correct |
25 |
Correct |
31 ms |
53308 KB |
Output is correct |
26 |
Correct |
26 ms |
53304 KB |
Output is correct |
27 |
Correct |
32 ms |
54348 KB |
Output is correct |
28 |
Correct |
37 ms |
54348 KB |
Output is correct |
29 |
Correct |
31 ms |
54256 KB |
Output is correct |
30 |
Correct |
31 ms |
54356 KB |
Output is correct |
31 |
Correct |
30 ms |
54228 KB |
Output is correct |
32 |
Correct |
31 ms |
54256 KB |
Output is correct |
33 |
Correct |
28 ms |
54220 KB |
Output is correct |
34 |
Correct |
28 ms |
54352 KB |
Output is correct |
35 |
Correct |
31 ms |
54112 KB |
Output is correct |
36 |
Correct |
28 ms |
54340 KB |
Output is correct |
37 |
Correct |
27 ms |
53960 KB |
Output is correct |
38 |
Correct |
28 ms |
54100 KB |
Output is correct |
39 |
Correct |
195 ms |
76844 KB |
Output is correct |
40 |
Correct |
203 ms |
78332 KB |
Output is correct |
41 |
Correct |
192 ms |
77892 KB |
Output is correct |
42 |
Correct |
198 ms |
77888 KB |
Output is correct |
43 |
Correct |
222 ms |
79720 KB |
Output is correct |
44 |
Correct |
210 ms |
79744 KB |
Output is correct |
45 |
Correct |
60 ms |
54396 KB |
Output is correct |
46 |
Correct |
66 ms |
54976 KB |
Output is correct |
47 |
Correct |
180 ms |
77120 KB |
Output is correct |
48 |
Correct |
194 ms |
77268 KB |
Output is correct |
49 |
Correct |
238 ms |
77196 KB |
Output is correct |
50 |
Correct |
188 ms |
77220 KB |
Output is correct |
51 |
Correct |
177 ms |
71828 KB |
Output is correct |
52 |
Correct |
193 ms |
79056 KB |
Output is correct |
53 |
Correct |
194 ms |
74496 KB |
Output is correct |
54 |
Correct |
212 ms |
81220 KB |
Output is correct |
55 |
Incorrect |
579 ms |
117684 KB |
Output isn't correct |
56 |
Halted |
0 ms |
0 KB |
- |