QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#410595#6665. 팀 만들기thenymphsofdelphi15 75ms8716kbC++141.9kb2024-05-14 10:14:172024-05-14 10:14:20

Judging History

你现在查看的是最新测评结果

  • [2024-05-14 10:14:20]
  • 评测
  • 测评结果:15
  • 用时:75ms
  • 内存:8716kb
  • [2024-05-14 10:14:17]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#if __cplusplus < 202002L
template <class T> int ssize(const T& a){ return a.size(); }
#endif
template <class T1, class T2> istream& operator>> (istream& in, pair <T1, T2>& a){ in >> a.first >> a.second; return in; }
template <class T> istream& operator>> (istream& in, vector <T>& a){ for (auto &x: a){ in >> x; } return in; }
 
using ll = long long;
using ld = long double;

vector <ll> build_teams(vector <int> A1, vector <int> B1, vector <int> A2, vector <int> B2, vector <int> L1, vector <int> R1, vector <int> L2, vector <int> R2){
	auto n = ssize(A1), m = ssize(A2), q = ssize(L1);

	vector <ll> ans(q);

	if ((n <= 500 and m <= 500 and q <= 500) or q <= 20){
		for (auto iq = 0; iq < q; iq++){
			vector <pair <ll, int>> opt(n);

			auto dnc = [&](auto&& self, int l1, int r1, int l2, int r2)->void{
				auto m1 = (l1 + r1) >> 1;
				opt[m1] = {numeric_limits <ll>::min(), -1};
				for (auto j = l2; j <= r2; j++){
					opt[m1] = max(opt[m1], pair <ll, int>{ll(A1[m1] + A2[j]) * (B1[m1] + B2[j]), j});
				}
				auto m2 = opt[m1].second;
				if (l1 <= m1 - 1){
					self(self, l1, m1 - 1, m2, r2);
				}
				if (m1 + 1 <= r1){
					self(self, m1 + 1, r1, l2, m2);
				}
			};
			dnc(dnc, L1[iq], R1[iq], L2[iq], R2[iq]);

			ll tans = max_element(begin(opt), end(opt))->first;
			ans[iq] = tans;
		}
	}

	return ans;
}

#ifndef ONLINE_JUDGE
signed main(){
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	if (fopen("KEK.inp", "r")){
		freopen("KEK.inp", "r", stdin);
		freopen("KEK.out", "w", stdout);
	}

	int n, m, q;
	cin >> n >> m >> q;
	vector <int> A1(n), B1(n), A2(m), B2(m), L1(q), R1(q), L2(q), R2(q);
	cin >> A1 >> B1 >> A2 >> B2;
	for (auto iq = 0; iq < q; iq++){
		cin >> L1[iq] >> R1[iq] >> L2[iq] >> R2[iq];
	}

	vector <ll> ans = build_teams(A1, B1, A2, B2, L1, R1, L2, R2);
	for (auto iq = 0; iq < q; iq++){
		cout << ans[iq] << "\n";
	}
}
#endif

詳細信息

Subtask #1:

score: 5
Accepted

Test #1:

score: 5
Accepted
time: 1ms
memory: 3988kb

input:

500 499
7 4997
13 4988
20 4983
28 4969
44 4963
49 4922
54 4919
58 4897
71 4893
72 4886
85 4883
102 4879
107 4876
113 4868
128 4845
133 4839
135 4831
138 4821
140 4809
156 4793
178 4780
181 4776
190 4760
196 4756
203 4752
209 4736
225 4728
228 4723
232 4720
235 4709
253 4676
258 4660
260 4645
266 463...

output:

25745327
24221652
25260576
25444230
25944610
26027379
25944610
21794500
25502475
19748843
25944610
25269202
25294500
24084151
25944610
25944610
25923420
25745327
24097815
21842574

result:

ok 20 lines

Test #2:

score: 5
Accepted
time: 0ms
memory: 3752kb

input:

500 499
3 4994
6 4989
12 4978
20 4972
22 4965
32 4949
48 4914
52 4893
56 4875
62 4867
66 4860
80 4840
98 4828
106 4814
108 4788
127 4785
142 4783
177 4775
181 4770
182 4766
191 4764
201 4757
205 4753
235 4743
298 4740
300 4725
326 4720
346 4714
350 4709
373 4703
379 4680
390 4674
391 4643
393 4640
3...

output:

22404249
24625440
24983847
24994621
26178282
25385964
25028495
18972628
24778368
24808000
25212965
24604640
23302608
24979302
22241460
25385964
24155109
26178282
25137864
25619090

result:

ok 20 lines

Test #3:

score: 5
Accepted
time: 1ms
memory: 3752kb

input:

500 499
3 4988
4 4967
8 4953
10 4942
11 4936
13 4930
20 4927
40 4904
43 4897
61 4892
65 4852
70 4849
74 4815
78 4812
90 4801
91 4792
107 4783
116 4781
121 4770
123 4747
125 4738
129 4706
132 4700
134 4698
139 4684
145 4680
148 4667
155 4665
164 4652
181 4651
188 4649
191 4648
199 4646
202 4628
209 4...

output:

25458244
17507070
23722057
23685867
24493896
26156980
21925946
26222616
25564880
25172184
24611064
17491437
25418853
25931580
25669456
25144644
26156980
25931580
17224980
25581918

result:

ok 20 lines

Test #4:

score: 5
Accepted
time: 4ms
memory: 3788kb

input:

500 499
22 5000
23 4994
33 4971
34 4960
35 4949
36 4943
37 4930
66 4891
112 4879
118 4863
132 4859
136 4854
152 4851
153 4848
154 4845
164 4842
180 4814
184 4801
197 4798
211 4794
214 4789
221 4773
226 4770
250 4768
256 4760
265 4728
267 4727
272 4718
288 4693
313 4691
318 4683
340 4676
352 4662
355...

output:

25267216
25648854
24950190
25648854
25648854
25192470
25648854
25267216
25267216
25022088
25648854
25267216
24968784
24378216
25648854
25840997
25648854
25648854
25648854
25822235
25648854
24947710
25822235
25822235
25822235
25267216
25648854
25022088
25509360
25840997
25648854
25648854
25648854
252...

result:

ok 500 lines

Test #5:

score: 5
Accepted
time: 4ms
memory: 3768kb

input:

500 499
4 4995
10 4970
25 4967
29 4960
32 4958
39 4954
44 4937
45 4930
52 4927
64 4912
66 4910
67 4901
69 4897
71 4875
79 4863
81 4852
82 4831
89 4816
98 4805
106 4800
116 4794
121 4785
136 4765
137 4756
144 4743
156 4736
157 4724
159 4721
160 4720
163 4715
166 4707
180 4704
185 4701
197 4697
224 46...

output:

26806923
25439158
26931420
26192385
26651388
26651388
25061382
26931420
26453167
25395564
26931420
26453167
26931420
26453167
26931420
26513175
26931420
26453167
26603521
26931420
26453167
26931420
26263972
26931420
26931420
26453167
26931420
26192385
26931420
26931420
26931420
26931420
26931420
269...

result:

ok 500 lines

Test #6:

score: 5
Accepted
time: 1ms
memory: 3940kb

input:

5 5
1 10
2 7
5 6
6 5
10 4
3 10
5 9
6 8
8 3
9 1
5
1 2 0 0
3 4 3 3
0 1 0 0
0 0 3 3
2 3 2 2

output:

128
126
85
117
156

result:

ok 5 lines

Test #7:

score: 5
Accepted
time: 1ms
memory: 3968kb

input:

5 5
2 8
3 5
4 4
7 3
9 1
1 10
2 9
3 3
5 2
10 1
5
0 4 3 3
2 4 0 0
2 3 2 2
2 2 0 0
1 4 1 1

output:

70
110
60
70
110

result:

ok 5 lines

Test #8:

score: 5
Accepted
time: 1ms
memory: 3764kb

input:

500 499
9 4994
14 4980
28 4978
29 4952
34 4940
62 4930
70 4917
74 4910
82 4901
106 4890
107 4883
110 4872
113 4871
119 4857
128 4853
131 4848
140 4839
144 4828
148 4816
153 4796
156 4786
159 4781
168 4770
181 4730
188 4727
193 4722
194 4721
215 4708
217 4707
232 4691
245 4690
258 4680
260 4667
261 4...

output:

20531749
16972104
21053425
23103696
25098804
25340760
25341680
21832928
21858600
25179924
23973411
21140084
21751158
14683410
23024292
14844505
25260348
18876924
24160328
21938755
24261405
24268965
23674320
23894930
22236925
24992050
5970151
20907068
23901372
24515392
24392200
21902265
24623903
2158...

result:

ok 500 lines

Test #9:

score: 5
Accepted
time: 1ms
memory: 3928kb

input:

500 499
5 4995
36 4981
46 4980
57 4979
71 4978
73 4972
76 4971
78 4959
79 4943
88 4923
95 4913
104 4908
113 4905
126 4897
129 4885
130 4874
173 4857
175 4825
178 4807
184 4804
187 4800
199 4784
202 4773
245 4772
250 4767
251 4766
281 4725
286 4720
287 4699
347 4698
349 4696
362 4693
372 4687
376 468...

output:

24953172
24794000
25335478
24556337
24128202
21977650
20408654
24631050
24409540
23185940
24632584
24312130
23457312
18707214
24737080
24174850
21375835
24631050
24378705
24621552
24900019
20720233
25734498
24871728
23796768
15357936
18732816
24483622
25789992
25660096
25742340
22546506
22812636
242...

result:

ok 500 lines

Test #10:

score: 5
Accepted
time: 1ms
memory: 3964kb

input:

4 2
1 9
6 5
8 3
10 1
5 8
6 7
4
0 0 0 1
1 1 0 1
2 2 0 1
3 3 0 1

output:

112
144
143
135

result:

ok 4 lines

Test #11:

score: 5
Accepted
time: 0ms
memory: 3756kb

input:

5 4
2 10
7 9
8 8
9 6
10 1
1 10
3 8
5 7
9 5
4
0 4 1 3
2 3 0 2
1 1 0 0
1 1 1 1

output:

224
195
152
170

result:

ok 4 lines

Test #12:

score: 5
Accepted
time: 0ms
memory: 3736kb

input:

1 1
9 5
4 7
1
0 0 0 0

output:

156

result:

ok single line: '156'

Test #13:

score: 5
Accepted
time: 0ms
memory: 3728kb

input:

2 2
3 10
6 2
4 7
6 2
10
0 1 0 0
1 1 0 0
0 0 0 0
0 1 0 1
0 1 0 0
0 1 0 0
1 1 1 1
1 1 1 1
0 1 1 1
0 1 0 0

output:

119
90
119
119
119
119
48
48
108
119

result:

ok 10 lines

Test #14:

score: 5
Accepted
time: 0ms
memory: 3944kb

input:

3 3
1 14
3 8
11 3
1 9
10 8
12 5
10
0 0 0 0
2 2 0 2
0 0 0 2
0 2 1 1
1 2 0 1
0 1 1 1
1 1 2 2
1 2 1 2
0 2 0 0
0 0 1 2

output:

46
231
247
242
231
242
195
231
144
247

result:

ok 10 lines

Test #15:

score: 5
Accepted
time: 0ms
memory: 3732kb

input:

5 5
4 19
10 14
15 11
17 3
19 2
2 19
10 7
14 3
15 2
17 1
10
3 4 2 3
0 1 2 3
3 3 1 1
1 4 0 3
3 4 3 3
4 4 3 4
3 4 3 4
0 3 3 4
2 3 0 3
3 3 0 3

output:

186
408
270
510
160
136
160
420
510
418

result:

ok 10 lines

Test #16:

score: 5
Accepted
time: 1ms
memory: 3724kb

input:

7 7
2 19
4 13
5 10
6 6
7 5
10 4
12 3
2 20
6 15
8 12
11 9
14 7
15 6
17 1
10
0 4 0 3
2 3 2 5
2 3 1 3
5 5 2 5
3 5 4 5
1 6 3 4
2 4 2 5
2 6 0 5
1 5 0 1
1 6 0 4

output:

364
323
304
288
264
360
323
324
304
360

result:

ok 10 lines

Test #17:

score: 5
Accepted
time: 1ms
memory: 3692kb

input:

10 10
3 19
5 18
8 17
10 13
12 10
13 9
15 8
16 6
17 5
18 1
1 19
6 15
7 14
9 13
10 12
13 10
14 7
16 5
17 2
18 1
10
0 1 5 5
5 6 0 6
0 5 1 7
5 8 3 7
3 5 1 8
3 5 0 7
0 4 8 8
6 7 0 2
3 4 1 7
6 9 1 7

output:

504
504
567
504
529
529
475
484
529
504

result:

ok 10 lines

Test #18:

score: 5
Accepted
time: 0ms
memory: 3696kb

input:

15 15
2 20
3 19
4 18
5 17
6 16
8 15
9 14
10 12
11 11
12 9
13 7
14 6
15 5
16 3
20 1
1 20
2 19
3 17
4 15
5 14
6 13
7 12
11 11
13 8
14 6
15 5
16 4
17 3
18 2
19 1
10
2 8 2 8
8 12 7 13
2 7 2 3
1 10 1 14
0 13 10 13
1 10 8 12
6 13 3 14
13 14 7 13
5 10 1 3
2 14 2 5

output:

500
484
378
500
460
484
500
378
392
414

result:

ok 10 lines

Test #19:

score: 5
Accepted
time: 2ms
memory: 3728kb

input:

498 499
27 4991
37 4989
49 4978
54 4967
65 4964
70 4963
76 4943
77 4935
110 4903
112 4883
116 4882
118 4871
123 4870
126 4868
130 4860
136 4855
139 4840
146 4817
159 4816
203 4811
235 4810
249 4806
257 4798
259 4795
272 4786
283 4783
288 4781
289 4771
301 4764
302 4745
333 4730
335 4719
345 4713
350...

output:

25059100
26443626
24701330
25664187
24972456
26443626
23704800
24849946
24730376
24024673
25410691
25196431
25882857
20204998
26443626
17370044
26443626
26443626
23404703
25209247
24488802
24843336
25441668
24956295
25078491
25664187
20478964
25459972
25145413
23747913
25078491
25910042
25051490
223...

result:

ok 500 lines

Test #20:

score: 5
Accepted
time: 2ms
memory: 3752kb

input:

423 400
2 4968
60 4946
72 4938
91 4910
95 4899
98 4869
110 4832
116 4827
119 4804
121 4797
122 4795
124 4782
129 4776
131 4774
151 4763
162 4745
163 4722
182 4713
196 4683
200 4679
207 4676
210 4664
223 4621
249 4619
265 4617
275 4615
281 4612
293 4598
301 4597
333 4578
343 4557
346 4547
380 4529
39...

output:

25653405
26650000
6823686
26446696
16542394
25074350
22265488
27134380
26779122
27260832
25686258
23517530
23330238
23661300
22902808
27134380
24632011
25848669
20042100
24981181
26779122
26560890
20610852
25638726
27260832
25973892
26571468
24161598
27167912
26286516
27167912
26944533
25444281
2648...

result:

ok 500 lines

Test #21:

score: 5
Accepted
time: 3ms
memory: 3740kb

input:

500 500
12 4998
18 4994
32 4990
55 4970
57 4961
74 4950
91 4939
96 4937
122 4931
124 4921
127 4881
130 4877
138 4857
159 4846
160 4844
165 4843
166 4836
181 4831
199 4818
212 4809
253 4786
254 4783
272 4755
273 4739
275 4736
298 4734
307 4733
318 4728
321 4719
322 4714
351 4686
353 4681
357 4678
366...

output:

24251001
24408876
25954800
23803350
25912414
24408876
25731552
20675986
25879501
25464547
23738916
25492509
25954800
23163164
24524286
25005420
24258960
19881316
23864274
24884695
25492509
25119900
25452315
24408876
24900444
24991520
24533130
25492509
24649056
24041177
25141164
25194085
25954800
233...

result:

ok 500 lines

Test #22:

score: 5
Accepted
time: 0ms
memory: 3944kb

input:

499 500
241 1998397
2131 1996036
3317 1995104
8667 1992186
10801 1984868
14767 1982136
18355 1981825
18693 1978196
23272 1974799
28185 1974598
29185 1958817
31885 1951969
32657 1949913
36165 1943326
46509 1933617
47554 1932321
48342 1926639
49847 1923024
52698 1920254
55874 1918534
56057 1909221
568...

output:

2543777519646
4037188018786
3407335675545
3875689202860
2620922683140
3925852451433
3993113413520
3986304993216
3879082786800
3952072159232
3916650082440
3813851134401
3990873744520
3699222517536
3990873744520
3305639186176
3521012638454
3903445453051
3699222517536
4037188018786
3889885749401
399675...

result:

ok 500 lines

Test #23:

score: 5
Accepted
time: 3ms
memory: 3772kb

input:

500 498
2298345 998507729
2980882 997472093
8130269 996977292
8487157 995654073
14390861 995619536
18122495 994460979
19697981 987703132
19837504 987502413
19921980 986628758
25501848 984640139
27075607 983516527
27423861 982737873
28099456 981421946
28201694 980745740
29106533 980422598
30799056 97...

output:

763926714192407777
1044720464742592412
1015220808619437216
931240983517370836
1015220808619437216
917072956824113430
1009040844804436710
1015220808619437216
1015220808619437216
1044720464742592412
1014453565559038869
1044720464742592412
883457923860732978
1003474459434227132
987969664308050613
92893...

result:

ok 500 lines

Test #24:

score: 5
Accepted
time: 5ms
memory: 3976kb

input:

500 500
2699813 989376403
5210072 988161802
5996514 985305479
8901886 983612242
9335327 982575905
11148119 981065921
14147246 980967389
15394408 980468514
17583866 973997988
18992711 971195390
19250151 970064522
19997279 969120188
20356773 968865361
20446900 968392035
29650530 967683859
32916008 965...

output:

1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
1148107976640609075
...

result:

ok 500 lines

Test #25:

score: 5
Accepted
time: 3ms
memory: 3764kb

input:

500 500
154 17029
246 16987
264 16971
304 16935
351 16862
460 16837
539 16809
593 16758
735 16722
887 16666
948 16644
997 16580
1005 16525
1136 16480
1305 16451
1331 16424
1339 16404
1499 16345
1635 16324
1698 16310
1859 16296
1960 16275
2110 16264
2139 16255
2173 16225
2328 16184
2355 16144
2362 16...

output:

340200441
270557712
390514904
452277904
345539660
320962581
657633802
411252480
390514904
407284122
844100824
284064927
324615477
325281888
261481296
624764765
463794570
228042534
271199396
371805498
448966035
327866460
517235688
359863526
540863862
871066218
505082130
367192616
411754774
355316016
...

result:

ok 500 lines

Test #26:

score: 5
Accepted
time: 3ms
memory: 3760kb

input:

500 500
96 20674
191 20658
205 20651
283 20617
288 20595
394 20575
543 20569
672 20555
749 20543
839 20536
867 20532
1012 20527
1043 20503
1078 20486
1103 20474
1190 20471
1267 20461
1411 20444
1449 20422
1530 20400
1644 20389
1744 20379
1845 20356
1933 20354
1949 20338
2032 20323
2062 20301
2121 20...

output:

692042312
656063629
734811375
672218001
693207504
709392384
678704540
705901786
704157450
685078240
686927748
705139464
705901786
709392384
701244978
577498376
710981415
662738874
674512392
691136384
676178594
610701430
696083955
708290616
709063596
714256368
689820285
609506640
705973124
705901786
...

result:

ok 500 lines

Test #27:

score: 5
Accepted
time: 3ms
memory: 3840kb

input:

500 500
2 11519
3 11491
4 11358
5 11280
6 11191
7 11074
8 10986
11 10890
14 10785
19 10703
20 10632
21 10589
28 10554
33 10513
40 10496
48 10446
58 10430
68 10386
77 10262
86 10156
89 10154
94 10105
107 10033
120 9975
139 9912
149 9823
171 9743
189 9733
198 9693
200 9604
215 9514
240 9427
260 9329
2...

output:

93907900
183309770
176254892
108691000
183309770
183309770
158131876
118001161
151050345
161351700
168859584
90309926
103956000
183309770
168158676
183309770
172107607
137538063
125402058
107710368
173733536
174576024
183309770
40267975
107704540
162981700
183309770
162981700
178922436
180563555
165...

result:

ok 500 lines

Test #28:

score: 5
Accepted
time: 2ms
memory: 3976kb

input:

500 500
1 5989
12 5977
23 5965
34 5953
45 5941
56 5929
67 5917
78 5905
89 5893
100 5881
111 5869
122 5857
133 5845
144 5833
155 5821
166 5809
177 5797
188 5785
199 5773
210 5761
221 5749
232 5737
243 5725
254 5713
265 5701
276 5689
287 5677
298 5665
309 5653
320 5641
331 5629
342 5617
353 5605
364 5...

output:

32891090
24773058
31623166
32891090
32891090
32891090
32891090
32087846
32891090
31597556
32889896
29921390
32891090
32880416
32891090
29881056
32891090
32877910
31773658
32891090
28802610
32891090
32891090
32891090
32891090
32891090
32891090
32891090
30728146
32891090
31322580
32891090
32891090
328...

result:

ok 500 lines

Test #29:

score: 5
Accepted
time: 4ms
memory: 3760kb

input:

500 500
1 11977
12 11953
23 11929
34 11905
45 11881
56 11857
67 11833
78 11809
89 11785
100 11761
111 11737
122 11713
133 11689
144 11665
155 11641
166 11617
177 11593
188 11569
199 11545
210 11521
221 11497
232 11473
243 11449
254 11425
265 11401
276 11377
287 11353
298 11329
309 11305
320 11281
33...

output:

65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65161694
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
65771198
36135088
65771198
65771198
65771198
65771198
65771198
657...

result:

ok 500 lines

Test #30:

score: 5
Accepted
time: 4ms
memory: 3764kb

input:

500 500
1 11977
23 11953
45 11929
67 11905
89 11881
111 11857
133 11833
155 11809
177 11785
199 11761
221 11737
243 11713
265 11689
287 11665
309 11641
331 11617
353 11593
375 11569
397 11545
419 11521
441 11497
463 11473
485 11449
507 11425
529 11401
551 11377
573 11353
595 11329
617 11305
639 1128...

output:

131518440
131518440
131043120
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
131518440
99043336
131518440
131518440
131518440
131518440
131518440
131518440
1...

result:

ok 500 lines

Test #31:

score: 5
Accepted
time: 3ms
memory: 4004kb

input:

500 500
1 1498
3 1495
5 1492
7 1489
9 1486
11 1483
13 1480
15 1477
17 1474
19 1471
21 1468
23 1465
25 1462
27 1459
29 1456
31 1453
33 1450
35 1447
37 1444
39 1441
41 1438
43 1435
45 1432
47 1429
49 1426
51 1423
53 1420
55 1417
57 1414
59 1411
61 1408
63 1405
65 1402
67 1399
69 1396
71 1393
73 1390
7...

output:

1499000
1501500
1499000
1352672
1501500
1499000
1499000
1501500
1501500
1501500
1499000
1499000
1499000
1229760
1198392
1333332
1501500
637912
991496
1499000
1501500
1501500
1498632
1499000
1201072
1499000
1429232
869792
1501500
1499000
1499000
1499000
1499000
1499000
1109360
525352
1499000
1490860
...

result:

ok 500 lines

Subtask #2:

score: 10
Accepted

Dependency #1:

100%
Accepted

Test #32:

score: 10
Accepted
time: 22ms
memory: 4612kb

input:

200 100000
5503165 995149221
8266588 995002422
21946668 992986739
25413933 990349572
28299421 973255250
37124968 968549011
43496864 968064488
55669193 966554644
76135027 965428022
85004974 962069232
87848601 955359834
91164522 943903417
91874732 940891045
92514264 939556809
102898246 938039042
10439...

output:

984901378753241934
991771176978169000
1001388688412349108
1045816375530230055
1045816375530230055
1001388688412349108
1045816375530230055
1001111379309445404
989722299319675666
1045816375530230055
994277172837228768
844214663291817384
972575401903380860
1001111379309445404
929212486916356202
1001388...

result:

ok 20 lines

Test #33:

score: 10
Accepted
time: 15ms
memory: 6272kb

input:

100000 200
4381 999898116
4642 999870491
6788 999837291
7640 999824569
8942 999817070
12171 999796839
14138 999793946
19714 999787588
19720 999778196
19950 999767606
20957 999761218
36427 999750312
39438 999724948
41147 999719544
60336 999715615
67904 999676786
76975 999666529
77633 999630166
80014 ...

output:

972922785920335364
973292937431081800
1020129627203740746
981300244010962594
1013382901189535670
997734182839373548
1012907209033479786
1019951489100610396
1005023212057601920
952534824803283498
961216592333078709
997329502619588000
980588205097742808
1011686446212516312
991044636259077695
101622047...

result:

ok 20 lines

Test #34:

score: 10
Accepted
time: 37ms
memory: 6796kb

input:

81626 67941
3 2000000
10 1999995
29 1999993
33 1999982
35 1999960
62 1999945
96 1999940
100 1999891
160 1999877
306 1999868
331 1999865
388 1999778
405 1999769
417 1999750
426 1999740
438 1999734
453 1999696
458 1999664
491 1999641
493 1999638
552 1999626
566 1999612
638 1999611
673 1999579
776 1999...

output:

3389474188389
4023113289546
4016393921280
3673258316973
4016393921280
4020951015432
4023113289546
4013776547098
4011904593460
3055004543682
4023113289546
3208503726296
4012488512396
4016393921280
4003303180996
4021258165294
4005405402716
3842970979921
4003303180996
4016393921280

result:

ok 20 lines

Test #35:

score: 10
Accepted
time: 54ms
memory: 7328kb

input:

81626 100000
5399 999990669
96324 999971745
96993 999954768
106720 999952952
108939 999939455
109813 999922583
126656 999903931
128948 999902269
170381 999884921
187121 999869110
214350 999837474
229020 999827086
235716 999819053
241851 999794823
252580 999772956
270642 999770499
288359 999722965
29...

output:

903108598547671208
1002634594653434411
1004601743491279500
1001868403335646122
1002739453996283250
1004601743491279500
1004601743491279500
1004601743491279500
636311421875743440
999898291538688648
999667458181327214
1001875047768207390
978209659102529196
1003221739208140634
1002345761350212096
10046...

result:

ok 20 lines

Test #36:

score: 10
Accepted
time: 35ms
memory: 7212kb

input:

100000 67941
4 1999994
21 1999952
41 1999930
53 1999885
75 1999840
146 1999831
189 1999828
228 1999827
231 1999812
233 1999790
247 1999751
284 1999723
296 1999699
305 1999683
369 1999662
370 1999630
374 1999621
381 1999594
382 1999584
386 1999574
389 1999572
431 1999570
448 1999560
464 1999559
497 1...

output:

3997314319382
3997314319382
3993761598453
3998998529526
3994845973568
3989601535320
3849466699716
3944841227901
3671728704729
1662421048083
3984962287368
3990621378400
3992670680496
3997314319382
3997314319382
3875577051930
3997314319382
3990574490210
3989109415590
2954756765100

result:

ok 20 lines

Test #37:

score: 10
Accepted
time: 39ms
memory: 7860kb

input:

100000 100000
4371 999987471
37236 999963414
38713 999960227
44711 999959877
46552 999959222
73127 999948956
82476 999947357
87744 999944733
120147 999942860
128282 999927313
156267 999919286
157111 999871877
173126 999852047
189523 999847951
234059 999847746
241862 999802488
246431 999788979
260129...

output:

1000398904726452971
1004269420399756875
993853905876814276
1002718505553710701
968959097049944061
999287650459493850
771757398632894232
948954651239462985
893625506586294768
1000964197567275950
999456583592277776
1006739001352496880
1003966458748593152
1004473478973149636
1003135670033135940
1006749...

result:

ok 20 lines

Test #38:

score: 10
Accepted
time: 65ms
memory: 7856kb

input:

100000 100000
1 1099990
13 1099979
25 1099968
37 1099957
49 1099946
61 1099935
73 1099924
85 1099913
97 1099902
109 1099891
121 1099880
133 1099869
145 1099858
157 1099847
169 1099836
181 1099825
193 1099814
205 1099803
217 1099792
229 1099781
241 1099770
253 1099759
265 1099748
277 1099737
289 1099...

output:

1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090
1319978200090

result:

ok 20 lines

Test #39:

score: 10
Accepted
time: 33ms
memory: 7856kb

input:

100000 100000
1 2499976
13 2499951
25 2499926
37 2499901
49 2499876
61 2499851
73 2499826
85 2499801
97 2499776
109 2499751
121 2499726
133 2499701
145 2499676
157 2499651
169 2499626
181 2499601
193 2499576
205 2499551
217 2499526
229 2499501
241 2499476
253 2499451
265 2499426
277 2499401
289 2499...

output:

2992832203610
2494910197010
2999947400230
2999947400230
2999947400230
2974550119156
2999947400230
2999947400230
2999947400230
2976445109804
2999947400230
2874486118530
2991934798662
2999947400230
2553745490714
2999947400230
2999947400230
2999947400230
2984644765338
2999947400230

result:

ok 20 lines

Test #40:

score: 10
Accepted
time: 62ms
memory: 7852kb

input:

100000 100000
1 1099990
25 1099979
49 1099968
73 1099957
97 1099946
121 1099935
145 1099924
169 1099913
193 1099902
217 1099891
241 1099880
265 1099869
289 1099858
313 1099847
337 1099836
361 1099825
385 1099814
409 1099803
433 1099792
457 1099781
481 1099770
505 1099759
529 1099748
553 1099737
577 ...

output:

2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198
2639954200198

result:

ok 20 lines

Test #41:

score: 10
Accepted
time: 36ms
memory: 7828kb

input:

100000 100000
1 2499976
25 2499951
49 2499926
73 2499901
97 2499876
121 2499851
145 2499826
169 2499801
193 2499776
217 2499751
241 2499726
265 2499701
289 2499676
313 2499651
337 2499626
361 2499601
385 2499576
409 2499551
433 2499526
457 2499501
481 2499476
505 2499451
529 2499426
553 2499401
577 ...

output:

5160633725706
5966489872984
5959141335424
5999889800506
5987960182988
5999889800506
5999889800506
5999889800506
5999889800506
5977055851568
5999301742486
5999889800506
5999889800506
5009411579246
5999889800506
5999889800506
5098254743036
4992568676854
5999889800506
5974959263798

result:

ok 20 lines

Test #42:

score: 10
Accepted
time: 55ms
memory: 7796kb

input:

100000 100000
369 351827235
1741 351825896
7513 351825597
14429 351819997
22989 351819963
24186 351818631
28823 351817781
38344 351812331
46681 351811227
53697 351803461
57469 351797570
61003 351788054
66702 351782360
73075 351774686
81655 351773631
84356 351769031
90429 351760319
100400 351755569
1...

output:

144120754196775377
91131403015473023
112452211184582172
143286756577031600
122396131454462814
143423223403120726
114771173250055218
142965356878992840
143916028345377531
124196379963213092
109147029685404970
144151797523263400
127599819692475544
144338818043006315
140547522167138046
1347086233623347...

result:

ok 20 lines

Test #43:

score: 10
Accepted
time: 75ms
memory: 7780kb

input:

100000 100000
6435 390740643
8628 390734334
12451 390730143
21143 390724172
30794 390722523
32673 390722340
37988 390714143
46120 390711188
48278 390706268
56062 390696585
61071 390690615
70359 390689394
78739 390679800
82156 390677007
90929 390675031
95548 390669859
103000 390662058
109102 39065380...

output:

137163856881202605
137163856881202605
137163856881202605
137163856881202605
137163856881202605
137163856881202605
137163856881202605
137163856881202605
137163856881202605
102776739058446768
137163856881202605
137163856881202605
137163856881202605
96363164695694520
137163856881202605
1371638568812026...

result:

ok 20 lines

Test #44:

score: 10
Accepted
time: 48ms
memory: 7780kb

input:

100000 100000
83 57529363
233 57528153
311 57528128
428 57526889
441 57525159
513 57525024
647 57523400
802 57522672
837 57521126
905 57519817
936 57519487
1057 57518841
1074 57518088
1193 57516737
1261 57515867
1296 57514393
1404 57514278
1471 57512745
1481 57511069
1568 57510206
1634 57509617
1690...

output:

772433378786392
439637960338304
423078640517504
435893426920816
766465102968696
430764067439781
615541318754576
708817620954032
439637960338304
612199230939450
614112229887742
581972871364236
431370348013920
423075540741440
419653539772300
421107843209529
708817620954032
400282465266167
583487356615...

result:

ok 20 lines

Test #45:

score: 10
Accepted
time: 43ms
memory: 7804kb

input:

100000 100000
1 199999
4 199997
7 199995
10 199993
13 199991
16 199989
19 199987
22 199985
25 199983
28 199981
31 199979
34 199977
37 199975
40 199973
43 199971
46 199969
49 199967
52 199965
55 199963
58 199961
61 199959
64 199957
67 199955
70 199953
73 199951
76 199949
79 199947
82 199945
85 199943...

output:

59999800000
40472155496
55389354160
59999800000
60000300000
59443051132
60000300000
28466504860
60000300000
59999800000
32623271080
59999800000
46036539032
59999800000
59999800000
59999800000
59999800000
58993610900
60000300000
59999800000

result:

ok 20 lines

Test #46:

score: 10
Accepted
time: 56ms
memory: 7888kb

input:

100000 100000
1 273097270
5215 273094539
10429 273091808
15643 273089077
20857 273086346
26071 273083615
31285 273080884
36499 273078153
41713 273075422
46927 273072691
52141 273069960
57355 273067229
62569 273064498
67783 273061767
72997 273059036
78211 273056305
83425 273053574
88639 273050843
938...

output:

142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
142391493716423548
72308928947831968
142391493716423548
142391493716423548
142391493716423548
139353304654403320
1423914945109156...

result:

ok 20 lines

Subtask #3:

score: 0
Wrong Answer

Test #47:

score: 0
Wrong Answer
time: 33ms
memory: 8712kb

input:

200 100000
335635 996427627
4368692 990235584
10335314 971208588
11639195 971143844
23801483 970115479
31489602 959110431
31544396 956821351
48348198 954187112
48509739 953684848
51173262 952420589
53207608 941523603
62582103 940608015
65545228 932323862
73708623 932037283
80559453 929148992
9033280...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

wrong answer 1st lines differ - expected: '993958698780308505', found: '0'

Subtask #4:

score: 0
Wrong Answer

Test #65:

score: 0
Wrong Answer
time: 41ms
memory: 8716kb

input:

200 100000
2904660 993940483
16886371 993289642
17317405 990982034
18403947 976774733
18849359 973351068
19183185 970254940
19306003 966229683
21192298 964806508
23734314 964320708
23888967 955733824
27113148 951453312
37031360 944529530
39266197 937051115
40090929 928931574
59651306 922916360
69712...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

wrong answer 1st lines differ - expected: '1016308928382908236', found: '0'

Subtask #5:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

0%