QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#346394 | #4563. Radio Towers | Lynkcat | 14 | 312ms | 129228kb | C++20 | 2.6kb | 2024-03-08 14:18:25 | 2024-03-08 14:18:27 |
Judging History
answer
#include "towers.h"
#include<bits/stdc++.h>
#define poly vector<int>
#define IOS ios::sync_with_stdio(false)
#define ll long long
#define mp make_pair
#define mt make_tuple
#define pa pair < int,int >
#define fi first
#define se second
#define mod 998244353
#define sz(x) ((int)((x).size()))
#define int ll
using namespace std;
const int inf=1e18;
const int N=100005;
namespace
{
int n;
int mx[N][21],lst[N][21],nxt[N][21];
int rt[N];
int a[N],d[N];
int qrymx(int l,int r)
{
if (l>r) return -inf;
int t=__lg(r-l+1);
return max(mx[l][t],mx[r-(1<<t)+1][t]);
}
int cnt,tr[N*32],ls[N*32],rs[N*32];
void update(int &k,int lst,int l,int r,int x,int y)
{
k=++cnt;
tr[k]=tr[lst],ls[k]=ls[lst],rs[k]=rs[lst];
tr[k]+=y;
if (l==r) return;
int mid=l+(r-l)/2;
if (x<=mid) update(ls[k],ls[lst],l,mid,x,y);
else update(rs[k],rs[lst],mid+1,r,x,y);
}
inline int query(int k,int lst,int l,int r,int L,int R)
{
if (L<=l&&r<=R) return tr[k]-tr[lst];
int mid=l+(r-l)/2;
int res=0;
if (L<=mid) res+=query(ls[k],ls[lst],l,mid,L,R);
if (R>mid) res+=query(rs[k],rs[lst],mid+1,r,L,R);
return res;
}
}
void init(signed nn, std::vector<signed> g)
{
n=nn;
for (int i=0;i<sz(g);i++)
a[i+1]=g[i];
for (int i=1;i<=n;i++)
mx[i][0]=a[i];
for (int j=1;j<=20;j++)
for (int i=1;i+(1<<j)-1<=n;i++)
mx[i][j]=max(mx[i][j-1],mx[i+(1<<(j-1))][j-1]);
poly sta;
for (int i=1;i<=n;i++) d[i]=1e9,lst[i][0]=0,nxt[i][0]=n+1;
nxt[n+1][0]=n+1,lst[0][0]=0;
for (int i=1;i<=n;i++)
{
while (!sta.empty()&&a[sta.back()]>a[i])
sta.pop_back();
if (!sta.empty()) lst[i][0]=sta.back(),d[i]=min(d[i],qrymx(lst[i][0]+1,i-1)-a[i]);
sta.push_back(i);
}
poly().swap(sta);
for (int i=n;i>=1;i--)
{
while (!sta.empty()&&a[sta.back()]>a[i])
sta.pop_back();
if (!sta.empty())
nxt[i][0]=sta.back(),d[i]=min(d[i],qrymx(i+1,nxt[i][0]-1)-a[i]);
sta.push_back(i);
}
for (int i=1;i<=n;i++)
d[i]=max(d[i],0ll),update(rt[i],rt[i-1],0,1000000000,d[i],1);
// for (int i=1;i<=n;i++) cout<<d[i]<<",";
// cout<<endl;
for (int j=1;j<=20;j++)
for (int i=0;i<=n+1;i++) lst[i][j]=lst[lst[i][j-1]][j-1],nxt[i][j]=nxt[nxt[i][j-1]][j-1];
}
signed max_towers(signed L, signed R, signed D)
{
L++,R++;
int l=L,r=R;
for (int i=20;i>=0;i--)
if (nxt[l][i]<=n&&qrymx(L,nxt[l][i]-1)<a[nxt[l][i]]+D)
{
l=nxt[l][i];
}
for (int i=20;i>=0;i--)
if (lst[r][i]>=1&&qrymx(lst[r][i]+1,R)<a[lst[r][i]]+D)
r=lst[r][i];
if (l>=R) return 1;
int res=(qrymx(l+1,nxt[l][0]-1)-a[l]>=D)+(qrymx(lst[r][0]+1,r-1)-a[r]>=D);
return res+query(rt[r-1],rt[l],0,1000000000,D,1000000000);
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 160ms
memory: 78108kb
input:
59640 49885 57346 58504 87383 113182 129676 204090 205404 259925 276583 300332 324014 333675 359377 364049 408489 414852 428310 438038 440113 458193 554789 643468 666525 683112 690791 707313 720088 741028 748785 789826 796576 800966 832867 851750 861044 862283 900756 926925 939560 955678 965636 9740...
output:
1 1 1 1 1 1 1 1 0 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 2 1 1 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 1 1 2 2 1 1 1 1 0 1 0 1 2 1 2 1 1 0 1 0 1 0 0 1 2 1 1 1 2 0 1 1 1 1 1 2 0 1 1 1 2 1 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 ...
result:
wrong answer 11th lines differ - expected: '1', found: '0'
Subtask #2:
score: 0
Wrong Answer
Test #8:
score: 11
Accepted
time: 1ms
memory: 4364kb
input:
425 753881706 405729786 890889563 29736246 598281970 208352067 357783003 663497023 178397034 4832890 562140755 510307001 354540290 538848551 436879256 86659033 42928516 24145404 749159097 118423198 506851985 204895765 719719998 726244368 991372008 681703480 799303017 657138050 88278945 417801236 260...
output:
13
result:
ok 3 lines
Test #9:
score: 0
Accepted
time: 2ms
memory: 6344kb
input:
2000 510696791 617882876 373405425 518361747 407161508 435668375 559543221 465317236 38039460 717410075 714427583 977153243 679286738 23933545 750215417 37078782 973334934 244734879 243897181 603105656 981870220 85688930 807317304 901266308 225354691 737318933 824323690 365669439 111883771 153256479...
output:
292
result:
ok 3 lines
Test #10:
score: 0
Accepted
time: 0ms
memory: 6328kb
input:
2000 516351740 512181903 200723571 993230512 160881035 858124753 539677115 120758992 855511696 883443323 930303372 707938300 186981787 145199071 581235758 65550786 7197175 474759320 732341567 517832089 220614631 428681162 168642809 331743780 689236970 514407524 725936494 447118446 628858360 36946526...
output:
91
result:
ok 3 lines
Test #11:
score: 0
Accepted
time: 2ms
memory: 6324kb
input:
2000 9654673 812116916 373455422 816862897 353222263 785552601 262143032 654718863 361397545 763154940 79011466 983035671 46521930 654559175 371270845 610911343 19671952 831534324 157278884 850193672 83857278 600512673 91419235 820220378 19933790 959137813 447541847 957882585 47577396 981451791 2290...
output:
336
result:
ok 3 lines
Test #12:
score: 0
Accepted
time: 2ms
memory: 6304kb
input:
2000 101597651 901337214 94865893 515541321 223422476 791229261 361846447 652989994 147299317 644867197 32737606 525776949 182468296 547470985 330848340 873710937 392296086 971753844 156102346 764082424 254318166 685488259 221310405 521552461 481853974 868664461 300437861 938093383 466194541 6653033...
output:
176
result:
ok 3 lines
Test #13:
score: 0
Accepted
time: 2ms
memory: 6340kb
input:
2000 472936055 973169917 157888070 752944598 254539436 814034071 26698036 538887055 429236303 861439585 333049317 960563190 374468157 913310144 89434192 863875353 370790916 558434605 461824050 727741912 341709750 906272885 334496641 886737508 281651305 854169557 304260640 494128561 360711440 5339229...
output:
130
result:
ok 3 lines
Test #14:
score: 0
Accepted
time: 0ms
memory: 6604kb
input:
2000 448125011 914906568 342296305 596847215 308205069 607246435 321988425 906263458 12754675 760166384 151837669 976756930 492753133 973159665 56759675 984884487 393926205 542913032 452064909 641120579 160301206 621818390 240470745 728458832 262255458 718912726 467544291 738536144 174343867 6066620...
output:
34
result:
ok 3 lines
Test #15:
score: -11
Wrong Answer
time: 2ms
memory: 6356kb
input:
2000 63119 1763800 2560156 2577120 2947719 4220876 4493280 5257204 5695924 6255528 6688141 6874164 6986335 8608902 8655716 8667255 8733692 9297137 9612369 10639944 11677890 11850447 12123475 12942200 13292330 13630586 14006505 14704409 15864169 16065863 16090141 16348841 16582396 16707789 16914115 1...
output:
0
result:
wrong answer 3rd lines differ - expected: '1', found: '0'
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 14
Accepted
Test #65:
score: 14
Accepted
time: 208ms
memory: 127428kb
input:
99308 491693640 24020487 317364185 726230755 737284540 951143270 709116045 641023337 360629062 964879440 47884022 532494780 803629825 635450854 688041998 573937055 113198481 191311841 929603572 636688 598629732 895342035 396521271 619919754 716589045 657789547 373121546 866402108 609316614 60046511 ...
output:
11903 4770 14278 13956 571 9308 4389 9 22097 16784 26037 2813 8487 16602 2029 6158 17236 29707 19863 12083 20816 18090 4195 11612 4623 6658 7660 624 9839 13012 14475 11799 14795 6365 7308 5981 13614 14208 15922 17325 6020 10291 1819 29076 3117 6638 5810 28747 14944 9541 5498 1015 5001 20938 305 1993...
result:
ok 76385 lines
Test #66:
score: 0
Accepted
time: 247ms
memory: 128292kb
input:
100000 646527498 970130195 879656883 854139882 920539450 14492099 70829155 825526447 519236533 385324961 763550841 616593724 202907362 504717767 861551686 907280958 806537098 75704450 554965405 422432432 940208667 752899470 775720977 966726690 961764576 993069149 823583546 69522676 360505418 7633091...
output:
14639 9186 584 818 3164 16444 1579 16458 6571 5493 20925 3038 3459 7677 14998 8753 2530 12026 13859 985 3177 296 398 6246 6210 6153 7709 24258 1152 3748 7952 8080 13438 5107 1161 4986 23542 15941 18037 791 15601 8274 3031 13339 8920 8559 11180 24013 394 8673 4017 6704 6973 210 2085 8072 3422 6896 10...
result:
ok 100002 lines
Test #67:
score: 0
Accepted
time: 252ms
memory: 127960kb
input:
100000 799666095 11912869 1942326 329008647 676518434 731915773 50963049 775935498 336708769 698841857 979426630 497121885 413375659 771207486 690312572 933493505 987882987 160504698 336117631 191934672 178953077 95891702 137046482 542428354 425646854 622674091 727455806 150971684 875220551 94422593...
output:
3359 5788 2636 4749 12929 3462 9867 19742 27431 10049 6507 21413 26395 16171 1065 1099 6059 3852 827 8338 4447 19422 6687 18554 12713 17167 17551 6782 6320 12234 14788 9130 5326 19419 3788 8 4527 7191 2972 21849 17183 18614 8536 21210 4177 6455 5606 163 18117 7891 14769 7953 1074 4478 11977 29196 40...
result:
ok 100002 lines
Test #68:
score: 0
Accepted
time: 258ms
memory: 128044kb
input:
100000 309383765 818406090 14295145 629135702 209715251 509716889 12520088 913509863 261355145 755723016 134249674 908312702 67849537 765830435 242732056 593027397 386060391 727871977 280196624 593068179 108402646 788956280 297991891 717564506 119204481 557237512 343638543 799142578 267285209 810194...
output:
23097 5447 23783 27586 952 21564 3870 8703 21117 7700 11000 20983 38022 2663 941 11454 2759 11174 36632 8509 16858 40362 25309 12070 32624 30796 9202 7175 11966 11519 16231 6793 36568 6656 25316 20825 14867 22408 3890 4120 1635 13839 29293 20761 28612 2624 9766 31836 8423 11943 11214 14008 661 8133 ...
result:
ok 100002 lines
Test #69:
score: 0
Accepted
time: 262ms
memory: 128036kb
input:
100000 398604064 517084515 403316469 941093925 341076538 763446081 355078186 592439416 478732289 646978211 411743599 905272211 443935337 593019442 240172880 860046653 35947342 589508481 340756803 701412642 475907286 706217099 208187382 909958202 390508631 817202038 114304432 775409240 89780581 53218...
output:
24400 36714 13886 14509 36820 1421 7548 27671 1349 26896 5653 25203 6164 5360 21403 33193 8148 7314 39871 8396 17198 6121 1871 1497 4763 30054 5495 31727 24694 45309 25900 28269 6858 9003 2063 4238 44756 22939 13667 25304 24777 19243 2781 36090 7651 12367 47033 6413 11981 4430 7511 25676 32483 36198...
result:
ok 100002 lines
Test #70:
score: 0
Accepted
time: 254ms
memory: 127940kb
input:
100000 470436767 754487792 461866345 963898735 349595303 728616335 250549334 578810355 347325118 804024766 15413294 787037528 105324976 872668363 473184954 707188829 464977606 782556528 256065321 752907482 412827734 758149764 362598737 510432812 220636665 831053655 189976212 708640841 59667440 87439...
output:
4031 19471 10612 11305 29772 29874 21670 2464 5310 25620 24369 6447 795 10520 18039 1110 11300 7418 19857 3817 7976 14218 18688 45775 31258 24208 13949 1287 11237 32270 34202 9525 38736 11963 21324 21122 13715 45274 28148 26076 726 24521 11067 20365 5491 7039 20594 14715 4222 15081 3768 12930 11824 ...
result:
ok 100002 lines
Test #71:
score: 0
Accepted
time: 261ms
memory: 128028kb
input:
100000 412173417 598390408 450506026 862926714 62758084 584835820 312278703 842539009 241894641 534565458 27030476 943943695 471359870 991029867 307671828 975813712 466428149 865400208 101594411 879257618 112546625 917139766 242222832 744966595 51074647 579442498 239653108 584603561 477338553 655568...
output:
33924 11012 17217 5652 35774 19773 7167 16147 4921 22378 2886 6381 20729 25984 37105 33701 12765 15814 31567 4523 3853 2591 5038 24440 15123 29860 5543 28365 21666 6416 7901 16121 5444 18700 17557 8004 9915 26519 5987 605 7786 4804 4099 16672 20783 5924 44630 21907 44651 18917 6041 5328 4338 15527 3...
result:
ok 100002 lines
Test #72:
score: 0
Accepted
time: 305ms
memory: 128340kb
input:
100000 2879 32457 32800 34124 37088 65871 67630 69007 70609 76863 96036 96369 96565 105168 106207 119568 120684 131675 139246 156582 157087 161216 175779 185692 192424 252496 261161 268435 272206 274575 290650 292159 302124 302145 323135 347536 353475 358692 362164 370878 382914 383697 387884 395290...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 100002 lines
Test #73:
score: 0
Accepted
time: 213ms
memory: 129228kb
input:
100000 999980337 999975418 999972304 999917615 999913600 999911365 999900298 999895568 999873059 999868465 999863826 999863630 999862039 999833583 999826253 999820741 999808163 999794394 999788715 999775323 999771102 999765847 999750783 999746445 999710318 999708459 999707434 999695764 999679223 999...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 100002 lines
Test #74:
score: 0
Accepted
time: 312ms
memory: 128492kb
input:
100000 2635 21487 31880 36169 36537 36733 50286 55501 101667 105396 109937 125176 130431 131349 131526 133585 145149 148230 148497 181038 199372 208320 214709 228385 229354 234058 246813 259715 259821 304855 307878 319123 322813 329890 338817 340380 349808 359373 361892 364235 365371 367741 392751 4...
output:
1 1 5 1 1 4 4 2 2 5 4 2 4 2 1 5 5 5 4 2 1 1 1 1 1 2 4 3 4 4 3 2 1 5 1 5 5 1 2 4 5 2 5 5 3 2 2 2 5 4 2 5 5 5 5 1 1 2 1 1 4 4 5 5 4 5 1 5 3 2 4 1 1 5 1 2 3 2 1 1 5 5 2 2 5 1 1 1 2 4 4 5 1 1 4 1 2 2 3 5 1 4 1 2 5 4 1 2 1 1 5 1 4 5 1 1 4 4 4 1 4 3 1 2 5 1 5 2 5 2 1 4 2 1 3 5 1 1 2 2 1 1 5 5 3 1 3 5 4 2 ...
result:
ok 100002 lines
Test #75:
score: 0
Accepted
time: 218ms
memory: 128804kb
input:
100000 999998388 999992472 999983027 999964773 999963279 999951283 999950880 999934408 999924387 999916418 999904684 999903982 999903323 999902932 999901848 999890455 999861126 999846824 999842850 999832617 999827692 999823954 999823038 999821892 999814773 999791390 999779861 999755956 999748895 999...
output:
2 4 2 4 3 2 5 2 2 2 2 1 4 2 3 3 4 1 2 2 1 2 2 1 3 1 1 3 1 3 3 3 1 3 2 1 2 1 5 2 3 1 2 3 2 2 1 1 3 4 1 1 1 1 2 2 5 1 2 4 2 1 1 5 3 1 2 1 5 2 1 1 4 1 1 2 1 3 3 4 3 5 1 2 1 2 1 1 2 1 1 2 1 2 2 2 1 2 3 2 2 1 4 1 1 1 2 1 2 1 3 4 3 4 1 1 1 3 2 2 2 3 2 2 4 1 1 2 2 3 1 1 1 1 1 4 2 2 3 1 1 3 1 3 5 3 1 1 2 4 ...
result:
ok 100002 lines
Test #76:
score: 0
Accepted
time: 62ms
memory: 128488kb
input:
100000 993008519 146022225 604155615 718738203 494270163 652193137 726796672 94792684 820864876 549569362 829507440 678929032 370307391 344030005 159841431 334544886 937946370 808171575 982936137 406172084 606958454 37019021 4928645 19688703 431277735 368642501 122957106 319157770 412765992 11198976...
output:
11803
result:
ok 3 lines
Test #77:
score: 0
Accepted
time: 49ms
memory: 128032kb
input:
100000 40182145 534750963 47219441 875390747 81526264 760417678 338532233 735498264 324045878 867847994 59843568 773887600 159787753 815005992 380202117 994057104 420819027 751621209 431455690 874518582 286468788 746915239 108591545 609413028 129180541 684472848 170951027 628699282 133169234 5876429...
output:
10641
result:
ok 3 lines
Test #78:
score: 0
Accepted
time: 70ms
memory: 128024kb
input:
100000 275422663 623971262 359872300 719293364 255135323 541992266 440822587 869808644 499149139 763707030 354974961 726924800 330201357 680217772 405944508 793791040 210835281 508081687 259941660 743715189 158261318 948118520 78257478 668842593 103644266 931463910 338599866 777663876 422872806 7486...
output:
3918
result:
ok 3 lines
Test #79:
score: 0
Accepted
time: 35ms
memory: 129136kb
input:
100000 999988156 999976131 999968026 999947275 999945597 999933785 999930172 999920289 999917585 999912234 999908854 999897793 999885917 999875073 999869174 999855731 999844433 999811617 999807251 999800921 999792585 999786180 999781483 999760080 999750045 999744093 999742092 999740171 999733488 999...
output:
1
result:
ok 3 lines
Test #80:
score: 0
Accepted
time: 63ms
memory: 128372kb
input:
100000 13698 28310 35130 49038 53306 57086 63036 75561 76672 81572 87405 101823 116392 121336 131981 152687 154046 161564 166916 167077 175074 181353 215368 216356 242236 282273 302168 302245 315363 328425 331460 337542 344358 346156 346268 349988 364543 398098 398173 417443 425254 429806 483805 495...
output:
3
result:
ok 3 lines
Test #81:
score: 0
Accepted
time: 67ms
memory: 128304kb
input:
100000 686070451 896400233 415977400 557145966 569104546 729711476 7517469 585286333 654728559 526059886 664580363 44964974 822423618 924237671 253134105 907248874 842926901 490665647 968126707 843652090 577413524 822838296 701325974 418582281 682668062 910983736 688209040 48680293 467513665 6473215...
output:
33289
result:
ok 3 lines
Test #82:
score: 0
Accepted
time: 69ms
memory: 128028kb
input:
100000 324786527 811070346 27863928 812278519 469886012 725613704 314110706 938011015 447486290 790851139 225255488 588777115 157708439 967669178 122826315 605497395 442130539 901574836 449101384 630033703 363487572 640039974 495641990 646810950 101835263 504819182 341085568 818338550 309812680 8340...
output:
50000
result:
ok 3 lines
Test #83:
score: 0
Accepted
time: 65ms
memory: 128036kb
input:
100000 328751617 872776434 193896091 937579789 403324609 884873962 19096263 546885897 299955068 810378130 266985913 855008900 113957467 674955114 367808805 824606229 36085456 748004114 360544279 875870329 490814410 550516261 480140569 978076458 371373042 557323008 337625884 791543744 389714119 82617...
output:
49998
result:
ok 3 lines
Test #84:
score: 0
Accepted
time: 49ms
memory: 129136kb
input:
100000 999994414 999989068 999983169 999973305 999956998 999952735 999935815 999932727 999921388 999912247 999910668 999892587 999886472 999886197 999877300 999875077 999873271 999862506 999847958 999843765 999831825 999818755 999813197 999811659 999808140 999800414 999789177 999788823 999783126 999...
output:
1
result:
ok 3 lines
Test #85:
score: 0
Accepted
time: 40ms
memory: 128412kb
input:
100000 552 1167 1507 1559 5688 6188 8616 38613 47871 73234 76958 93583 142300 154838 156445 162479 168262 172236 175115 183892 187208 211463 265659 275302 279294 291311 332477 340758 376960 387576 395567 397517 415963 417398 449245 452439 456342 465878 468169 475771 481256 491236 503318 507666 52887...
output:
5
result:
ok 3 lines
Subtask #5:
score: 0
Wrong Answer
Test #86:
score: 17
Accepted
time: 22ms
memory: 33612kb
input:
23881 605288257 422163932 155875880 339929874 76049859 196344969 958160745 767945284 469191956 997116006 387749577 15911341 920437918 367576975 800789357 351557615 283723284 369507452 841548133 643412903 309731505 256549694 370065644 699518122 559017597 347646657 469353381 575240521 501893001 454519...
output:
7197 7063 150 5030 5227 7333 1778 6675 2012 5921 4878 7477 4598 2769 5360 6465 7660 7234 7794 2760 6321 7056 7302 4749 464 2029 5650 1973 6227 4900 4966 4990 3142 785 5818 3005 7705 6967 1940 5880 7201 4752 1278 6554 2951 894 6601 7019 7236 6076 5182 6579 2343 2070 4337 5744 4437 2262 6686 1739 7756...
result:
ok 31567 lines
Test #87:
score: -17
Wrong Answer
time: 145ms
memory: 127952kb
input:
100000 187962236 252322706 659740540 756184857 615615021 870954164 997894181 924184575 178246679 206117936 948374169 611376809 940125697 583402158 621243496 179806768 420420048 261580744 495350370 179501503 624736464 865025098 132756697 396891347 254854635 384499314 232013282 699329403 718265326 972...
output:
21501 24099 33073 16936 24145 8440 674 23350 29618 2899 7659 19499 19027 10215 4083 14518 30601 23009 17970 7096 15472 32634 26673 29553 6232 11457 690 8753 7786 4078 28404 25386 28535 1752 5912 16456 18098 25382 30618 28242 30215 30920 19228 20981 27023 18696 16047 19091 7953 9832 13542 4224 26991 ...
result:
wrong answer 13346th lines differ - expected: '1', found: '-1'
Subtask #6:
score: 0
Wrong Answer
Test #97:
score: 19
Accepted
time: 214ms
memory: 114328kb
input:
88768 238644804 620122421 789364401 899010695 885388612 437964772 845379533 657562749 773925456 625793781 916240972 291506550 379611161 905077982 629848170 530056471 520438258 806293637 326792996 785404568 74285074 565304193 846963319 63529729 804909008 212070492 69936548 656129389 408708069 3070450...
output:
7293 18702 4922 19044 23488 1992 20887 9156 21248 15708 115 11736 8529 19157 9407 9139 5401 20114 1699 3993 22639 5925 17883 12913 5726 12378 21617 15763 646 5418 16982 7639 6140 1776 6289 619 766 3079 8806 11541 7217 2650 15835 2238 2024 9705 23983 4664 8898 5006 2392 20170 8341 14535 16454 6623 18...
result:
ok 85825 lines
Test #98:
score: -19
Wrong Answer
time: 261ms
memory: 128312kb
input:
100000 821318783 448021739 293229061 462749326 277470126 112573967 30337160 961285688 337755987 539828416 181898269 886972019 692006779 120903166 745269606 63338329 802359215 553142737 128078880 176268977 801614897 319003788 904621668 760902954 355521853 953955853 272787937 630475166 479856202 97240...
output:
4072 1852 14754 15134 16937 1671 2095 6403 19494 11439 5340 5911 14816 2035 1864 3849 1585 261 991 13796 13299 5424 2956 10339 14124 311 5887 12171 7462 7227 17292 10436 12595 20040 14674 5120 2783 3869 10726 119 8309 10154 2397 21296 9862 1583 16958 669 12228 2332 1606 1416 6889 3081 4920 5185 3298...
result:
wrong answer 22304th lines differ - expected: '1', found: '0'
Subtask #7:
score: 0
Skipped
Dependency #1:
0%