QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#132715 | #4928. Game With Numbers | Thyl | 23 | 1269ms | 10024kb | C++14 | 1.2kb | 2023-07-31 04:32:43 | 2023-07-31 04:32:44 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,m;
vector<int> a,b;
int INF=LLONG_MAX;
int minimax(int step,vector<int> elements){
if(step==m){
int sum=0;
for(int i=0;i<elements.size();i++)sum+=elements[i];
return sum;
}if(step%2==0){
//premier joueur min
int mini=INF;
//erase div
vector<int> ED;
for(int &v:elements){
if(v%b[step]){
ED.push_back(v);
}
}
//erase !div
vector<int> END;
for(int &v:elements){
if(v%b[step]==0){
END.push_back(v);
}
}
mini=min(mini,minimax(step+1,ED));
mini=min(mini,minimax(step+1,END));
return mini;
}else{
//second joueur max
int maxi=-INF;
//erase div
vector<int> ED;
for(int &v:elements){
if(v%b[step]){
ED.push_back(v);
}
}
//erase !div
vector<int> END;
for(int &v:elements){
if(v%b[step]==0){
END.push_back(v);
}
}
maxi=max(maxi,minimax(step+1,ED));
maxi=max(maxi,minimax(step+1,END));
return maxi;
}
}
signed main(){
cin>>n>>m;
a.resize(n);
b.resize(m);
for(int i=0;i<n;i++){
cin>>a[i];
}
for(int i=0;i<m;i++){
cin>>b[i];
}
cout<<minimax(0,a)<<endl;
return 0;
}
详细
Subtask #1:
score: 3
Accepted
Test #1:
score: 3
Accepted
time: 1ms
memory: 3444kb
input:
5 1 -5000111000 -5000222000 -15 5 2 5
output:
-10000333010
result:
ok single line: '-10000333010'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
1 1 4 4
output:
0
result:
ok single line: '0'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3504kb
input:
1 1 -400000000000000 400000000000000
output:
-400000000000000
result:
ok single line: '-400000000000000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 3484kb
input:
7 1 8 -1 -2 -9 5 3 -5 3
output:
-6
result:
ok single line: '-6'
Test #5:
score: 0
Accepted
time: 4ms
memory: 3888kb
input:
20000 1 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -400000000000000 -40...
output:
-8000000000000000000
result:
ok single line: '-8000000000000000000'
Test #6:
score: 0
Accepted
time: 4ms
memory: 3936kb
input:
20000 1 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 4000...
output:
0
result:
ok single line: '0'
Test #7:
score: 0
Accepted
time: 9ms
memory: 3856kb
input:
20000 1 -71369186400903 -21303325779163 -97827461296555 -214132697955012 -196334833414389 -301936452329789 -382174513230544 -367394070689093 -219406802243067 -9558534773577 -330359703722617 24771323320621 15923681295764 -301614836381862 28586018531489 -74683043436219 -124135635944320 -10648832568409...
output:
-3607837516244021000
result:
ok single line: '-3607837516244021000'
Test #8:
score: 0
Accepted
time: 4ms
memory: 3808kb
input:
20000 1 233033381367060 60861233878571 347212183474786 -84818202084737 -233828045019529 -393504707324582 353159561005753 -110028076672707 -114833693071773 199219445924758 166468140403099 54437974337128 302678275176822 -172792066320760 -39393106960029 -282021409620224 186724411035278 31109977318229 -...
output:
-51353784701877908
result:
ok single line: '-51353784701877908'
Test #9:
score: 0
Accepted
time: 9ms
memory: 3932kb
input:
20000 1 259276559450483 289816807429370 -346039222749615 27387823542230 375860934333993 -389352017613855 -311669269024107 321679266510763 -218467767104130 233355728228893 254623964396522 -367362969133313 266826918011316 -353725186724477 165128555208345 -200053627141839 79271694277875 253842426527683...
output:
-10720899572053746
result:
ok single line: '-10720899572053746'
Test #10:
score: 0
Accepted
time: 9ms
memory: 3876kb
input:
20000 1 -88391647220872 -175567802945542 -94353632762792 391060829840745 -206001066596400 -100611354221508 247179539541950 -380451534230002 -225503152746259 -144103704919724 170417897772421 174103054198099 -360195042352095 -392060207792192 -171502962366959 -38829126455905 16483057220004 381740942015...
output:
-454451956756021
result:
ok single line: '-454451956756021'
Test #11:
score: 0
Accepted
time: 1ms
memory: 3516kb
input:
8 1 5 3 6 6 4 4 4 5 3
output:
15
result:
ok single line: '15'
Test #12:
score: 0
Accepted
time: 6ms
memory: 3840kb
input:
20000 1 940322649 402959068 973703458 965399272 577786939 994768517 249675444 613581460 708982687 256093383 658262534 670606780 692856607 699530317 331043774 401861670 985171722 848569239 871522931 711432362 31877347 682027384 968965939 247043512 152194528 985888664 323630590 966824399 89552748 2601...
output:
2740638602
result:
ok single line: '2740638602'
Test #13:
score: 0
Accepted
time: 3ms
memory: 3864kb
input:
20000 1 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 100000...
output:
0
result:
ok single line: '0'
Test #14:
score: 0
Accepted
time: 7ms
memory: 3808kb
input:
20000 1 999999999 1000000000 1000000000 999999999 999999999 1000000000 999999999 1000000000 999999999 1000000000 999999999 999999999 999999999 1000000000 1000000000 1000000000 1000000000 999999999 1000000000 1000000000 999999999 999999999 1000000000 1000000000 999999999 999999999 1000000000 10000000...
output:
9950999990049
result:
ok single line: '9950999990049'
Subtask #2:
score: 0
Time Limit Exceeded
Test #15:
score: 6
Accepted
time: 9ms
memory: 3988kb
input:
20000 2 400000000000000 400000000000000 400000000000000 399999999999999 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 400000000000000 399999999999999 400000000000000 399999999999999 400000000000000 400000000000000 399999999999999 400000000000000 399999999999999 4000...
output:
3948000000000000000
result:
ok single line: '3948000000000000000'
Test #16:
score: 0
Accepted
time: 9ms
memory: 4120kb
input:
20000 2 182534839165186 70298512307304 389011527035061 17719186879755 173234501403065 299252387908755 156279428310107 -53468549407874 231983453347369 185595967982888 169571810287905 -112087920827993 365797541703357 -25349506737522 41239046248334 -148328819397811 80677342299710 50496185442999 3661562...
output:
408111326270709915
result:
ok single line: '408111326270709915'
Test #17:
score: 0
Accepted
time: 6ms
memory: 4260kb
input:
20000 2 218341929058610 113825266508950 121595505352950 -266649636489390 372691257506875 179007493239720 397838524296340 -277455533023185 -94840528158885 217347955859550 28622416443405 87805939966390 354614659862895 195207146310200 -268725390905755 -46296909528395 121209367951465 -367727040846525 33...
output:
0
result:
ok single line: '0'
Test #18:
score: 0
Accepted
time: 3ms
memory: 4220kb
input:
20000 2 395005725351249 208925533233056 370067432849697 -32292841344081 119705875252473 390006267156590 182021792361812 373942452150496 131651909751951 194868764687583 -310709963285496 185234270501602 -201237683305028 347662803738748 -395444715472187 -161459593569143 -364088659843392 207669567395887...
output:
184269549641235344
result:
ok single line: '184269549641235344'
Test #19:
score: 0
Accepted
time: 9ms
memory: 4220kb
input:
20000 2 116652975053630 60104321156340 -96584001368190 -266671454064060 307611122473040 228559133687280 -174863279198680 280205821685540 279981438604220 -158968079945690 142528833962150 101495202175140 370765018135660 372285686790750 175771120431660 -85711229337990 -342487498445017 156470713488120 -...
output:
89404597022232604
result:
ok single line: '89404597022232604'
Test #20:
score: 0
Accepted
time: 9ms
memory: 4004kb
input:
20000 2 231340216652324 256966723495253 55755970208939 18995037562238 40202115515306 205614422465647 198180465653526 352558308489362 130632690026657 136195592925145 376946112957128 363137818059883 35528831434382 216513118579719 270648824719091 190806044676988 279809284882951 28688494358407 184799626...
output:
2003248538023267678
result:
ok single line: '2003248538023267678'
Test #21:
score: 0
Accepted
time: 9ms
memory: 4404kb
input:
20000 3 384932075704620 -220975224710020 -394461881400459 28957402981307 204299530009879 71623823434060 -299465787509940 -220007273108480 -369774774356700 225587136214180 -103750665533375 -218791548517520 28155270728460 -340828350186510 -364760095356115 136719577403944 364648512931666 25141508616892...
output:
0
result:
ok single line: '0'
Test #22:
score: 0
Accepted
time: 7ms
memory: 4828kb
input:
20000 4 -6583097811612 -58132996113366 130226342358498 -302471354703242 218561225027708 -308216597111396 -158340791587048 -216481924427320 100851414823772 212081645535710 -317294934422216 348848551231538 -324839761355052 -244449111635152 258020432603870 236173097232520 84794272197096 67047545335560 ...
output:
0
result:
ok single line: '0'
Test #23:
score: 0
Accepted
time: 7ms
memory: 5024kb
input:
20000 8 298078912603948 78438259347402 140749094444945 -329303347640239 -129306754152072 -61765825553144 -339118683925351 11785340629263 -73607611340821 -33658379101816 140352907902536 -354864194969228 177325478536234 394946827562194 384388252688480 -70456837528868 -21018275840807 -151534523121821 -...
output:
0
result:
ok single line: '0'
Test #24:
score: 0
Accepted
time: 11ms
memory: 6332kb
input:
20000 16 69233061978954 -147966294027817 -240558896442060 -235260974626564 309475160079957 -59619632989203 -301430394786087 -70665682262788 7981361470899 11041937501121 -26367421920759 47625823667303 -200335262669798 -112775977481315 132294088175130 70903670726497 49458889057032 127590004718741 1576...
output:
0
result:
ok single line: '0'
Test #25:
score: 0
Accepted
time: 327ms
memory: 7708kb
input:
20000 25 363763542973680 -167600030582906 310093071175646 59174893357824 -141253067406780 -106893178642260 200037909607513 269961563805391 -338488119879423 296935773743224 -355712832617143 229344879039616 296859239171865 362363795132832 -125615040458625 -33160635035588 -150568599950325 1455276292579...
output:
0
result:
ok single line: '0'
Test #26:
score: 0
Accepted
time: 649ms
memory: 7860kb
input:
20000 26 -207202269203960 125486647242154 -114440821031491 -308313271805157 392235624328519 -242059134204221 -116032237680217 -44838758438362 306957677413745 335159672827209 175228635331150 292758391140605 245200610455267 -171291148751087 -347205586873919 205920413712579 -290725462602981 -3197841873...
output:
0
result:
ok single line: '0'
Test #27:
score: 0
Accepted
time: 1269ms
memory: 8016kb
input:
20000 27 -102950314496388 -170242954181831 325697488808674 373907157548787 358156977223878 -163970330431464 -150555164313842 339964384170771 -38733719831206 130486211882370 232363818413455 -337844742482700 -351202196040946 309488201117950 378568785095478 300767678830656 203396092536438 -933468439564...
output:
0
result:
ok single line: '0'
Test #28:
score: -6
Time Limit Exceeded
input:
20000 28 161234189919365 384243850953888 -247208021002516 168859834943380 -267265759968340 -48567614887402 243891989182845 -361035728922440 346531325710136 247752381082528 -259961906941044 -59648807075984 -350819672848400 114261469499795 105949910153416 -394119559802820 42731394877374 -3469685122366...
output:
result:
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 9
Accepted
Dependency #1:
100%
Accepted
Test #70:
score: 9
Accepted
time: 1ms
memory: 3484kb
input:
6 2 2 2 5 2 2 7 2 5
output:
7
result:
ok single line: '7'
Test #71:
score: 0
Accepted
time: 9ms
memory: 5808kb
input:
20000 7 -188879283315192 -327641745763222 -241580487164095 -15456291511257 -369769190663258 -340530152639888 -110854800023609 -237180776824346 -134512264208059 -384137409658299 143538007114520 -138827172095318 -70973606922970 15646466268762 -241697837888512 203416775183650 390129241715999 1679562886...
output:
0
result:
ok single line: '0'
Test #72:
score: 0
Accepted
time: 8ms
memory: 4096kb
input:
20000 7 -151742663165254 -162128569960956 -3546487995670 -234179013122747 -269434129636615 -331001128312930 -46237519411378 -356472035007319 -345426289988912 361465859260645 156493217632235 -280123973517845 -47027873649471 -358026738589916 -85538856956451 -268699610956249 -23489138125046 -2302463571...
output:
-18347475715474807
result:
ok single line: '-18347475715474807'
Test #73:
score: 0
Accepted
time: 11ms
memory: 4140kb
input:
20000 7 31307079883603 157913089472256 5535571490185 44452981686238 264018870835115 24727873666884 98886347630081 294924808835580 297813670148154 129396714963863 149353331688033 251697854992573 216299211517989 244744692166611 218624821958968 92159435459927 249413689820058 254076704839606 13854191919...
output:
29543180652765857
result:
ok single line: '29543180652765857'
Test #74:
score: 0
Accepted
time: 12ms
memory: 4140kb
input:
20000 7 -235730566432734 -96995421089780 -199641162956677 -85876362529936 -128036349493270 -328172783515658 -377170858269246 -55677933052155 -120293809444673 -369253344232549 -60607300890053 -109230874563349 -281321125227684 -249048240840367 -303520873306476 -273460084116755 -295535269954726 -114291...
output:
-29695400496216216
result:
ok single line: '-29695400496216216'
Test #75:
score: 0
Accepted
time: 8ms
memory: 4164kb
input:
20000 7 199997487031851 -355098360901950 162089462886210 345252205341330 356166673653079 100190028087850 271975090915251 350897266060925 373405343042470 329271193253185 206675944351043 -195616952274834 2868436369174 298649727105525 114220277377522 207678863277479 266971166681275 -78003831182033 8878...
output:
13780792459713710
result:
ok single line: '13780792459713710'
Test #76:
score: 0
Accepted
time: 11ms
memory: 4080kb
input:
20000 7 195128590198232 373651627343450 190842925864726 165464730861073 364820052284142 95239685366111 398346875945728 126015178795922 22899355216179 58450827720647 69333673510452 58666965862713 386643462192390 346159797190454 67617084584426 398780098642653 201486864133084 155565884283903 -207714209...
output:
29762229780701340
result:
ok single line: '29762229780701340'
Test #77:
score: 0
Accepted
time: 6ms
memory: 4096kb
input:
20000 7 -16287996599929 -161662275630559 -4678847011904 -39648405530422 -178714695791010 -193352703347264 -43574776944842 -307353675616021 -174613902412299 -389326061022899 -268915491545910 -178334172760653 -23872396574136 -299674129789236 -392886699962427 -156593675866122 -312883944908260 -17087524...
output:
-31819899511342296
result:
ok single line: '-31819899511342296'
Test #78:
score: 0
Accepted
time: 12ms
memory: 4156kb
input:
20000 7 247056177869113 -1254893812934 267848656061795 51500990150059 51936745042663 119756641279775 -395520845459093 -397448989894269 10217536049705 46191154979432 299579993736317 -137717675288144 113839500658332 228910763160344 -387859950960951 173073753357272 352944435159145 333556237706332 -3681...
output:
560592233952181
result:
ok single line: '560592233952181'
Test #79:
score: 0
Accepted
time: 11ms
memory: 4136kb
input:
20000 7 69280182798759 334106216293091 165300533770610 361150036772636 302958142264326 292470607722417 378394769055644 380284368922239 390080590644342 47263944675379 206304900619418 40393016804141 48999203897016 182288816084012 346358852819833 200033436119639 -147434832228 -359536404498 510576051297...
output:
30134252606026675
result:
ok single line: '30134252606026675'
Test #80:
score: 0
Accepted
time: 12ms
memory: 4104kb
input:
20000 7 -208880830689050 -397948713412718 -147803906775590 -271424890533189 -70179942362435 -244506405345130 -389626655752880 -397921837075035 -342188967060495 -243783710576405 -212131729954065 -269210960862326 -309253773264447 -230256151499192 -366879371869101 -260330778168305 -96373955545543 -9955...
output:
-30849872157489840
result:
ok single line: '-30849872157489840'
Test #81:
score: 0
Accepted
time: 10ms
memory: 4140kb
input:
19826 4 -46434949508223 -142775108678205 -155210737382107 -253391679291458 -351127096393832 -261670302921849 -96518691113898 -185873557434180 -243472723409960 -357425894005440 -108301051830477 -84797111707119 -292450228237761 85444031427607 -160436334009679 371452694757221 -66399848429562 -290700152...
output:
-51660272913396411
result:
ok single line: '-51660272913396411'
Test #82:
score: 0
Accepted
time: 11ms
memory: 4116kb
input:
19981 5 -139106912859376 -246044787914167 -79612364373234 20830527076535 29575419035427 -145578846388668 -82809278494578 28457297686314 61489439894267 189193038989374 -91477676753012 -97842857965930 -146797723871975 -387759492495835 -309378995626855 290577108289693 -17202104929559 88435474222073 -39...
output:
-51572624188967343
result:
ok single line: '-51572624188967343'
Test #83:
score: 0
Accepted
time: 11ms
memory: 4068kb
input:
19866 6 135137361654980 391741380371071 345588950866545 213169615594785 3833248393574 -236701510750480 200776121656557 347505178425165 80701982074830 351213782648310 142797008487715 236719322836910 284404576947645 358694231211920 379435229579664 226874415911750 293734810173347 188606762582893 209503...
output:
37800210405480424
result:
ok single line: '37800210405480424'
Test #84:
score: 0
Accepted
time: 11ms
memory: 4112kb
input:
19767 7 106205431157798 -362278772249363 360774704905207 175497043126483 230837900411905 17039228253920 -154133607116818 -347758717401856 390280959032652 -272103107062150 287485239551265 103269696768742 292488345479788 -141517647613846 248098020095422 74340612679659 248208414572630 307641279182328 3...
output:
10371657390859926
result:
ok single line: '10371657390859926'
Subtask #5:
score: 11
Accepted
Dependency #4:
100%
Accepted
Test #85:
score: 11
Accepted
time: 8ms
memory: 4136kb
input:
19780 8 -214034558626389 143462340263050 367859285076633 267071292723790 -291679279945009 151164119852174 119695436089548 64660520972929 7265606624145 146607287759273 186696077202023 -201032053276031 301323111457436 23018148778661 -93629952803112 -186210396215214 184434596350656 -61782849626124 -829...
output:
2978420603161278
result:
ok single line: '2978420603161278'
Test #86:
score: 0
Accepted
time: 12ms
memory: 4108kb
input:
19935 9 87623797389093 146894779049574 -320533702335433 -28872324454313 137765188959467 -286350758385272 -393539930914385 -223944262298164 -327098860656871 125333276680066 -155691838677454 -56235022001329 371145278261499 104320173158429 -171715160471888 -154838230056350 -46646646805743 2302978721084...
output:
-897805604235234
result:
ok single line: '-897805604235234'
Test #87:
score: 0
Accepted
time: 13ms
memory: 4140kb
input:
19950 10 24404536347132 -160750809466738 -42793772765440 30662702393643 -47861951745060 -112953578072320 -327059332188500 -216527733155700 -299779093943217 -194156963295538 311649565345044 -384966869082051 258489382297683 328720195194267 -369744506701770 -106759605385550 246061001112135 -10678224816...
output:
-179910555458007
result:
ok single line: '-179910555458007'
Test #88:
score: 0
Accepted
time: 13ms
memory: 4192kb
input:
19772 11 41079792215798 156901798143041 261642348243870 -100841921785885 347611899407268 -143157346215335 -49842886182068 134514593836305 340814004844415 -41035121226960 36057878735655 -202085927175381 53485185268802 316336874376515 141218941363360 -355657887176232 388909352625495 126077069300589 14...
output:
497413059838680
result:
ok single line: '497413059838680'
Test #89:
score: 0
Accepted
time: 6ms
memory: 4048kb
input:
19959 12 397297934721204 339646360183515 385842348372495 -181703540945619 395581159234555 -332216732597935 -246548601427953 183519265712566 255678815970501 149559318917855 -77916589617465 -253761550299455 387687048073079 -388241478401455 45820884629212 -351101809679870 -16870074624821 -2230531238164...
output:
-290370162237155
result:
ok single line: '-290370162237155'
Test #90:
score: 0
Accepted
time: 15ms
memory: 4008kb
input:
19891 13 -211279297416033 -32959630554970 6849314031021 382191649401785 291325518835769 240434827263345 -99713460534636 -183956369352360 272420350764562 286097516711721 131268719036130 -187565603353623 246549247868495 -129805217231690 191911704686394 -208212292354451 376978406788935 98546795926040 2...
output:
-129676547562639
result:
ok single line: '-129676547562639'
Test #91:
score: 0
Accepted
time: 19ms
memory: 10024kb
input:
20000 20 -394882022144377 -71586942633971 288824360393430 -118790782477591 -201081366214141 328550210957283 -161737239483622 -391907279672014 244017764280315 67582504442987 -389856177049137 -193786135063232 -76970653861319 324002226947434 -295887647656330 -212937609521412 25104388589762 -14459839066...
output:
0
result:
ok single line: '0'
Test #92:
score: 0
Accepted
time: 11ms
memory: 4064kb
input:
20000 14 355280846613570 259499980818850 210859655525860 189707484325515 201970731574128 -785332548 11353706007930 395133593541484 31601395777490 5027965204020 179546551700087 331760696764805 278917623565983 153404897049162 107835836710800 346791516985329 62924658665869 -108916407160 117613742697458...
output:
369706536446940
result:
ok single line: '369706536446940'
Test #93:
score: 0
Accepted
time: 12ms
memory: 4096kb
input:
20000 14 128542555141 -113687227709671 -277755846788671 -243012067881055 -208480418723304 345153634089 -352954135008475 -319333126282170 -245051319695281 -160162178012265 -214412876920242 -385009998618245 -277807776747501 -55888558005846 -35658309718070 -393273961743516 -305368826038298 -14500087315...
output:
-275504719855755
result:
ok single line: '-275504719855755'
Test #94:
score: 0
Accepted
time: 16ms
memory: 4132kb
input:
20000 15 164088261120329 315847499920638 290955189770830 537200194531 136792419205922 251064014969515 144183137979132 168965566795116 103965501947370 243124325771397 56482592380984 310823456203416 308758992963512 92861157863617 33702420714963 178311032029247 -214137452529 323996565508161 20505549124...
output:
212488998177456
result:
ok single line: '212488998177456'
Test #95:
score: 0
Accepted
time: 17ms
memory: 4092kb
input:
20000 15 -37509909181290 -130835883052399 -325683088818626 212068398542 -348101588725471 -371697082961127 -293746863779355 -197568762983111 -226766594938065 -64304458171005 -265568421190105 -43003020641812 -370876113776518 -367991844702482 -201278475490170 -218707073647641 -371183139314022 -38220933...
output:
-294628331596830
result:
ok single line: '-294628331596830'
Test #96:
score: 0
Accepted
time: 14ms
memory: 4088kb
input:
20000 16 274347658559975 158572702151045 85174617714410 49876716319001 272036976671746 7540058713330 57940864667980 398527150228480 80278501653856 204291862374600 -305983311865 396762649628895 362437824317985 265869629105535 156948935757152 223212635927112 202267759478070 264082899488672 16790105583...
output:
195323274840551
result:
ok single line: '195323274840551'
Test #97:
score: 0
Accepted
time: 13ms
memory: 4144kb
input:
20000 16 -307747794643982 -159842464096161 -3099751935210 -393150271564435 -68466753432168 -215603083387419 -204525651970493 -79036272762590 -174988285347204 -315605148383140 -162887531810718 -388906886591485 -352851733521651 -227303872664154 -328824565568070 -27926133370135 381372959058 -6599466227...
output:
-141014860646226
result:
ok single line: '-141014860646226'
Test #98:
score: 0
Accepted
time: 17ms
memory: 4088kb
input:
20000 17 391826474189430 240587713281916 231527711370956 16851992817296 71299704651871 91650673190118 363443033989035 304749995084785 175665989430165 367020382382836 394377180349152 42216228880485 356677289900581 166997919868797 332016299469855 120155425035282 166017896139004 186412276722007 2677615...
output:
76856568200720
result:
ok single line: '76856568200720'
Test #99:
score: 0
Accepted
time: 18ms
memory: 4136kb
input:
20000 17 -306304041622355 -41106509402773 -58342929725340 -159506813381916 -47500190356364 -33973660008834 -174738165623964 -278177499535481 -228479277772279 -287670134352601 -151537425900744 -135965048703341 -313271265465795 -345781146378850 -1455715819933 -2318679238239 -107962175058474 -125251006...
output:
-187212351552600
result:
ok single line: '-187212351552600'
Test #100:
score: 0
Accepted
time: 19ms
memory: 4108kb
input:
20000 18 31902489521055 192138539854953 10897470769185 48272106988556 235723545421210 369903801734005 66940606556200 330722059418100 283846585853985 81380761545083 125523528789659 351437198433981 129058208597556 223438775234920 222564303373055 185871821852860 288310925493500 -23839691889 25591623632...
output:
109278177838448
result:
ok single line: '109278177838448'
Test #101:
score: 0
Accepted
time: 13ms
memory: 4096kb
input:
20000 18 -208938448785885 -129450412656565 -347958824467771 -87682267430770 -317524502823957 -112512984862590 -109245559245537 -228952323170109 -367640038128090 311223381924 -6049230919680 -276751413278725 -226999211444280 -2342664420837 -308672698075280 -174321729983005 -98590154642100 -34188273013...
output:
-68012218760064
result:
ok single line: '-68012218760064'
Test #102:
score: 0
Accepted
time: 21ms
memory: 4096kb
input:
20000 19 107603568104604 175544296131243 84889706862103 166902210989969 204789443778491 352319004790662 183291059023479 332039072239952 183912913867683 320393646528215 149467582052283 96279499696380 16575056937488 398502699313103 4908132994401 98250947480290 200650221647337 80343917037215 3431312616...
output:
54875580798360
result:
ok single line: '54875580798360'
Test #103:
score: 0
Accepted
time: 16ms
memory: 4116kb
input:
20000 19 -185789507994300 -200099901762761 -77108823105314 -117514893898908 -46877429062695 -83832667132830 -302595808248426 -392432978879760 -320958947458092 -205833178826030 -66245702494972 -66706347684417 -45718055564357 -395926451080220 156450925674 -384256179703786 -395078871195008 -31842388429...
output:
-43319348599098
result:
ok single line: '-43319348599098'
Test #104:
score: 0
Accepted
time: 24ms
memory: 4492kb
input:
20000 20 -318849803229 292556285368204 73450463630957 234912834611258 368732864705205 327623300421318 215540572209270 110043764437780 385342595222106 48886255317306 -387754006343 6766212434564 192585281150316 304200053705144 54907198441165 180737065599827 394714838322272 23927199783543 7165290504424...
output:
2063638382737359
result:
ok single line: '2063638382737359'
Test #105:
score: 0
Accepted
time: 25ms
memory: 4180kb
input:
20000 20 292118355539045 177309903238930 258888441936973 341451941400395 233321389461440 71346300787125 394595288736110 386627509416384 360035754888703 237492231846675 66997442322815 386875730354008 48289746206352 82364366223384 201177023165565 107540446402774 120540141601653 225564102396990 1785281...
output:
922073703013113
result:
ok single line: '922073703013113'
Test #106:
score: 0
Accepted
time: 22ms
memory: 4064kb
input:
20000 20 376492379221140 40783772253679 203382436171473 156277016543340 3331626445719 -35740355365 65881131563247 375887542451283 361791675810271 154376602709641 92795547251757 216291228577424 336607049944506 321342320047672 234039140006475 335416840706233 389577296486413 131018644251880 11889674973...
output:
228517232616738
result:
ok single line: '228517232616738'
Test #107:
score: 0
Accepted
time: 27ms
memory: 4064kb
input:
20000 20 174642384459598 227540140323990 324722991193304 278813346874020 49613045942460 184343191566677 180142228585298 360424875489591 209094429844846 143036075054147 48631437137855 38301253802537 262398235295742 303826563651765 378552693107589 168905071149409 167060146749210 344532475375231 360232...
output:
64514672114464
result:
ok single line: '64514672114464'
Test #108:
score: 0
Accepted
time: 25ms
memory: 9964kb
input:
20000 20 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -348774692336070 -3...
output:
0
result:
ok single line: '0'
Test #109:
score: 0
Accepted
time: 11ms
memory: 4164kb
input:
20000 16 996323913 515700185 303759456 436551500 674887114 771771880 635759344 635550729 846116180 103747413 697488019 493855355 945531730 149149077 362091251 372542352 95977791 332879989 663636701 742244789 133948100 810178075 447404895 967838781 742489059 398978723 378379530 494489030 817381675 72...
output:
15029953211
result:
ok single line: '15029953211'
Test #110:
score: 0
Accepted
time: 12ms
memory: 4440kb
input:
20000 17 314764515 98216339 555082473 626039365 156488223 108895995 194282634 134997090 97769100 196711944 285577435 314326285 669583635 704689590 175900923 650084487 775521480 823236791 309629320 858261768 722878805 144491438 799633934 174836246 447220081 263253705 102848900 868746310 321609470 230...
output:
13688190516
result:
ok single line: '13688190516'
Test #111:
score: 0
Accepted
time: 10ms
memory: 4432kb
input:
20000 18 417904795 34826935 952904264 419222023 928606380 982648212 250862472 405807677 756113358 579794215 415353435 519499240 462733505 874837425 606679799 724432475 867382670 722486115 456189734 691008435 128701573 672877590 602952966 17839822 188592404 185929221 643696872 546214284 236146592 139...
output:
13239187920
result:
ok single line: '13239187920'
Test #112:
score: 0
Accepted
time: 13ms
memory: 4460kb
input:
20000 19 417321225 709409467 658813155 220192687 391681598 22732710 104438019 113754543 387647260 868857495 607869225 316106670 5660897 796498010 19323135 733008408 598715962 328964400 756564267 216797295 316470011 204238177 738164208 969329669 669035510 107696604 643245694 860431880 868171997 85760...
output:
0
result:
ok single line: '0'
Test #113:
score: 0
Accepted
time: 14ms
memory: 4444kb
input:
20000 18 997700165 322020919 333262105 710000935 979635345 274028830 486027790 167481351 265972166 687105265 710318895 399338975 813050090 142491195 197140874 147324100 867598368 243542215 346792199 89460360 689167920 31888980 485506791 477576495 573463023 236572952 760480833 220197991 284485157 444...
output:
14309750136
result:
ok single line: '14309750136'
Test #114:
score: 0
Accepted
time: 10ms
memory: 4128kb
input:
20000 9 531368915 68750550 140462364 169160211 54730830 185509654 757885148 915413565 611102380 585613560 135448796 35903065 595463097 771487682 74781300 563626327 671060720 627503730 222320406 557573905 85663106 340254915 242265870 639002661 421965415 666052112 544108125 440696465 555956015 8360109...
output:
18532904747
result:
ok single line: '18532904747'
Subtask #6:
score: 0
Time Limit Exceeded
Dependency #5:
100%
Accepted
Test #115:
score: 0
Time Limit Exceeded
input:
20000 100 -69431723737844 11161115662167 239152844355108 357799094742609 288125600762994 -233701835979808 -267712262646888 -184788854283366 -167827524400990 397870374406399 -33748339160793 346222107236304 -258303412498923 -378347406004904 348744532582035 -163691423649022 -308517052869483 12265772700...
output:
result:
Subtask #7:
score: 0
Memory Limit Exceeded
Test #151:
score: 0
Memory Limit Exceeded
input:
20000 200000 251159317 887191501 857733752 384683418 134050448 506121340 780905769 276370704 109535211 872899439 556774439 434676879 148563667 12737512 153656019 878376794 609869178 575053645 396025679 379898138 703697683 487484329 551835906 619319386 488957017 16140328 920609560 848562444 895060489...
output:
result:
Subtask #8:
score: 0
Memory Limit Exceeded
Test #155:
score: 0
Memory Limit Exceeded
input:
20000 200000 396977329688022 -8423371363214 383571122639006 99712372108087 291078785047968 388310484655305 362117849739665 -120348551555749 26985765506461 192508503736541 185676740370600 -214164742554207 352594619152236 382485504805765 -152156638968634 -12362549868218 381290775270609 -39341784805470...
output:
result:
Subtask #9:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
0%