QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#561173#5074. Vision TesthewanyingAC ✓864ms12584kbC++143.2kb2024-09-12 20:58:422024-09-12 20:58:43

Judging History

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

  • [2024-09-12 20:58:43]
  • 评测
  • 测评结果:AC
  • 用时:864ms
  • 内存:12584kb
  • [2024-09-12 20:58:42]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define bi __int128
#define fi first
#define se second
#define pb push_back

const int N=1e5+5,B=320;
int n,m,bl[N],R[N],a[N],s[N];
struct Nod{
  int l,r;
  ll a,b,c;
}Q[N];
vector<int> G[N];

struct MinHull{
  int tp=0,st[N];

  bool chk(int x,int y,int z){return (bi)(a[z]-a[x])*(z-y)>=(bi)(a[z]-a[y])*(z-x);}

  void add(int i){
    while(tp>1&&chk(st[tp-1],st[tp],i)) --tp;
	st[++tp]=i;
  }

  int qry(ll x,ll y){
	int l=1,r=tp;
	while(l<r){
      int mid=((l+r)>>1);
	  if((bi)x*(st[mid+1]-st[mid])<(bi)y*(a[st[mid+1]]-a[st[mid]])) r=mid;
	  else l=mid+1;
	}
	return st[l];
  }
}Mn1,Mn2;

struct MaxHull{
  int tp=0,st[N];

  bool chk(int x,int y,int z){return (bi)(a[z]-a[x])*(z-y)<(bi)(a[z]-a[y])*(z-x);}

  void add(int i){
	if(tp&&a[i]<=a[st[tp]]) return;
	while(tp>1&&chk(st[tp-1],st[tp],i)) --tp;
	st[++tp]=i;
  }

  int qry(ll x,ll y){
	int l=1,r=tp;
    while(l<r){
	  int mid=((l+r)>>1);
	  if((bi)x*(st[mid+1]-st[mid])>(bi)y*(a[st[mid+1]]-a[st[mid]])) r=mid;
	  else l=mid+1;
	}
	return st[l];
  }
}Mx1,Mx2;

int Qmn(ll x,ll y){
  int pos=Mn1.qry(x,y);
  if(Mn2.tp){
	int tmp=Mn2.qry(x,y);
	if((bi)a[tmp]*y-(bi)x*tmp<(bi)a[pos]*y-(bi)x*pos) pos=tmp;
  }
  return pos;
}

int Qmx(ll x,ll y){
  int pos=Mx1.qry(x,y);
  if(Mx2.tp){
    int tmp=Mx2.qry(x,y);
	if((bi)a[tmp]*y-(bi)x*tmp>(bi)a[pos]*y-(bi)x*pos) pos=tmp;
  }
  return pos;
}

void build(int l,int r){
  Mn1.tp=Mx1.tp=0;
  for(int i=l;i<=r;i++) Mn1.add(i),Mx1.add(i);
}

int val(ll x,ll y){
  int pmn=Qmn(x,y),pmx=Qmx(x,y);
  if((bi)y*(a[pmx]-a[pmn])-(bi)x*(pmx-pmn)>=y){
	if(pmn>pmx) return -1;
	else if(pmn<pmx) return 1;
  }
  return 0;
}

pair<ll,ll> sol(ll a,ll b,ll c,ll d){
  int w=val(a+b,c+d);
  if(!w) return {a+b,c+d};

  if(w<0){
	int t=0;
	while(val((a<<(t+1))+b,(c<<(t+1))+d)==w) ++t;
	b+=(a<<t),d+=(c<<t);
    while(t){
	  --t;
	  if(val((a<<t)+b,(c<<t)+d)==w) b+=(a<<t),d+=(c<<t);
	}
  }else{
    int t=0;
	while(val(a+(b<<(t+1)),c+(d<<(t+1)))==w) ++t;
    a+=(b<<t),c+=(d<<t);
	while(t){
	  --t;
	  if(val(a+(b<<t),c+(d<<t))==w) a+=(b<<t),c+=(d<<t);
	}
  }
  return sol(a,b,c,d);
}

void wrk(int i){
  auto tmp=sol(0,1,1,0);ll x=tmp.fi,y=tmp.se;
  int pos=Qmx(x,y);
  Q[i].a=x,Q[i].c=y,Q[i].b=(ll)((bi)a[pos]*y-(bi)x*(pos-Q[i].l));
}

void SOLVE(){
  cin>>n;Mn2.tp=Mx2.tp=0;
  for(int i=1;i<=n;i++) cin>>a[i],bl[i]=(i-1)/B+1,R[bl[i]]=i;
  for(int i=2;i<=n;i++) s[i]=s[i-1]+(a[i]!=a[i-1]);
  
  cin>>m;
  for(int i=1;i<=m;i++){
    cin>>Q[i].l>>Q[i].r;
    if(s[Q[i].l]==s[Q[i].r]) Q[i].c=1,Q[i].a=0,Q[i].b=a[Q[i].l];
	else if(bl[Q[i].l]==bl[Q[i].r]) build(Q[i].l,Q[i].r),wrk(i);
	else G[bl[Q[i].l]].pb(i);
  }

  for(int i=1,r;i<=bl[n];i++){
    Mn2.tp=Mx2.tp=0,r=R[i];
	sort(G[i].begin(),G[i].end(),[&](int x,int y){return Q[x].r<Q[y].r;});

	for(auto j:G[i]){
      while(r<Q[j].r) ++r,Mx2.add(r),Mn2.add(r);
	  build(Q[j].l,R[i]),wrk(j);
	  
	}
	G[i].clear();
  }

  for(int i=1;i<=m;i++) cout<<Q[i].a<<' '<<Q[i].b<<' '<<Q[i].c<<'\n';
}

int main(){
  ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
  int _;cin>>_;
  while(_--) SOLVE();
  return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 7708kb

input:

3
5
1 1 2 2 2
4
1 5
1 1
3 5
2 3
5
1 2 3 4 6
3
1 5
2 4
3 5
3
0 3 5
1
1 3

output:

1 4 3
0 1 1
0 2 1
1 1 1
5 4 4
1 2 1
3 6 2
5 1 2

result:

ok 24 numbers

Test #2:

score: 0
Accepted
time: 88ms
memory: 9784kb

input:

20000
5
216985264 261263380 305541495 349819610 394097726
5
2 3
3 5
1 2
1 1
5 5
5
375382625 514874812 654366999 793859186 933351373
5
3 5
2 5
2 4
4 4
1 2
5
4203556 117160178 230116801 343073423 456030045
5
2 5
1 1
3 4
2 4
5 5
5
925374406 933391410 941408414 949425418 957442422
5
3 4
5 5
2 3
1 3
4 5
...

output:

44278115 261263380 1
88556231 611082990 2
44278116 216985264 1
0 216985264 1
0 394097726 1
139492187 654366999 1
139492187 514874812 1
139492187 514874812 1
0 793859186 1
139492187 375382625 1
338869867 351480536 3
0 4203556 1
112956622 230116801 1
225913245 234320357 2
0 456030045 1
8017004 9414084...

result:

ok 300000 numbers

Test #3:

score: 0
Accepted
time: 106ms
memory: 7852kb

input:

20000
5
663398562 733306156 803213750 873121344 943028938
5
1 2
3 3
2 4
1 1
3 5
5
90107073 216544148 342981224 469418300 595855376
5
1 1
5 5
2 3
3 5
3 4
5
578795185 603695239 628595293 653495347 678395402
5
4 5
1 4
4 4
4 5
2 4
5
99770585 174616657 249462729 324308801 399154873
5
1 2
4 5
1 4
1 5
1 4
...

output:

69907594 663398562 1
0 803213750 1
69907594 733306156 1
0 663398562 1
69907594 803213750 1
0 90107073 1
0 595855376 1
126437076 216544148 1
126437076 342981224 1
126437076 342981224 1
24900055 653495347 1
24900054 578795185 1
0 653495347 1
24900055 653495347 1
24900054 603695239 1
74846072 99770585 ...

result:

ok 300000 numbers

Test #4:

score: 0
Accepted
time: 102ms
memory: 8280kb

input:

10000
10
34013891 48852155 63690419 78528682 93366946 108205209 123043473 137881737 152720000 167558264
10
1 8
6 9
7 7
2 6
2 3
8 10
5 7
3 8
10 10
5 6
10
65005189 120529926 176054663 231579399 287104136 342628873 398153610 453678347 509203084 564727820
10
7 10
3 4
8 9
6 9
3 7
4 6
5 6
2 8
1 6
2 5
10
2...

output:

74191318 170069459 5
44514791 324615629 3
0 123043473 1
29676527 97704311 2
14838264 48852155 1
29676527 275763474 2
29676527 186733892 2
74191318 318452095 5
0 167558264 1
14838263 93366946 1
166574210 1194460832 3
55524736 176054663 1
55524737 453678347 1
55524737 342628873 1
222098947 704218652 4...

result:

ok 300000 numbers

Test #5:

score: 0
Accepted
time: 110ms
memory: 9756kb

input:

10000
10
371965130 420545079 469125028 517704977 566284926 614864875 663444823 712024772 760604721 809184670
10
8 9
4 4
5 7
4 6
5 6
9 10
7 7
7 7
6 9
4 7
10
238386910 302937632 367488355 432039077 496589800 561140523 625691245 690241968 754792691 819343413
10
6 6
2 10
2 8
2 10
1 3
2 7
1 4
6 7
6 8
4 9...

output:

48579949 712024772 1
0 517704977 1
97159897 1132569853 2
48579949 517704977 1
48579949 566284926 1
48579949 760604721 1
0 663444823 1
0 663444823 1
145739846 1844594625 3
145739846 1553114933 3
0 561140523 1
193652168 908812897 3
193652168 908812897 3
193652168 908812897 3
129101445 476773820 2
1936...

result:

ok 300000 numbers

Test #6:

score: 0
Accepted
time: 185ms
memory: 9904kb

input:

1000
100
23443467 30975337 38507207 46039077 53570947 61102817 68634687 76166557 83698427 91230297 98762167 106294037 113825907 121357777 128889648 136421518 143953388 151485258 159017128 166548998 174080868 181612738 189144608 196676478 204208348 211740218 219272088 226803958 234335828 241867698 24...

output:

7531870 30975337 1
7531870 339782009 1
150637401 3782892160 20
210892361 1499986534 28
7531870 550674370 1
143105531 3736853082 19
173233011 3830626954 23
75318701 5205468896 10
210892361 2976233061 28
210892361 5506941393 28
210892361 2554448339 28
210892361 14786205277 28
210892361 7615865003 28
7...

result:

ok 300000 numbers

Test #7:

score: 0
Accepted
time: 190ms
memory: 8212kb

input:

1000
100
531924329 535185195 538446062 541706928 544967794 548228660 551489527 554750393 558011259 561272125 564532992 567793858 571054724 574315590 577576457 580837323 584098189 587359055 590619922 593880788 597141654 600402520 603663387 606924253 610185119 613445985 616706852 619967718 623228584 6...

output:

9782599 2300120097 3
13043465 2232045038 4
185869376 31063164300 57
55434726 11426406834 17
3260866 531924329 1
94565121 19208410410 29
13043465 2310305828 4
13043465 2323349293 4
13043465 2440740478 4
6521733 1566022060 2
94565121 18262759200 29
68478191 14731276866 21
6521733 1435587411 2
29347796...

result:

ok 300000 numbers

Test #8:

score: 0
Accepted
time: 440ms
memory: 9884kb

input:

100
1000
213684368 214116070 214547773 214979476 215411178 215842881 216274583 216706286 217137989 217569691 218001394 218433097 218864799 219296502 219728204 220159907 220591610 221023312 221455015 221886717 222318420 222750123 223181825 223613528 224045230 224476933 224908636 225340338 225772041 2...

output:

134691215 103440224601 312
71230931 59761361035 165
134691215 102497386096 312
113537787 57788517879 263
5612134 2862078796 13
50077503 54683656021 116
21153428 13960849665 49
92384359 70949384823 214
50077503 39960870135 116
248229002 174748373186 575
113537787 104679623911 263
21153428 14341611369...

result:

ok 300000 numbers

Test #9:

score: 0
Accepted
time: 439ms
memory: 9760kb

input:

100
1000
536150841 536290195 536429549 536568904 536708258 536847613 536986967 537126321 537265676 537405030 537544385 537683739 537823093 537962448 538101802 538241157 538380511 538519865 538659220 538798574 538937929 539077283 539216637 539355992 539495346 539634701 539774055 539913409 540052764 5...

output:

13517377 55277836821 97
13517377 52493257159 97
13517377 52966365354 97
12123833 54889329601 87
13517377 55575219115 97
11427061 51300542110 82
13517377 54480311578 97
696772 2905114792 5
13517377 53088021747 97
13517377 56899922061 97
26337982 118399521298 189
13517377 59833192870 97
10730289 50447...

result:

ok 300000 numbers

Test #10:

score: 0
Accepted
time: 569ms
memory: 9840kb

input:

10
10000
36428329 36523074 36617818 36712563 36807308 36902052 36996797 37091541 37186286 37281031 37375775 37470520 37565265 37660009 37754754 37849498 37944243 38038988 38133732 38228477 38323221 38417966 38512711 38607455 38702200 38796945 38891689 38986434 39081178 39175923 39270668 39365412 394...

output:

38940038 254959497643 411
493808949 1471298676601 5212
8432271 25680394471 89
3221317 3799510231 34
55804580 41155302883 589
55804580 54883229563 589
55804580 74805464623 589
47372309 45405870172 500
55804580 193948242923 589
47372309 369385091411 500
214786049 1335000474945 2267
55804580 6051949214...

result:

ok 300000 numbers

Test #11:

score: 0
Accepted
time: 556ms
memory: 10240kb

input:

10
10000
57158380 57205933 57253487 57301040 57348593 57396146 57443700 57491253 57538806 57586359 57633913 57681466 57729019 57776572 57824126 57871679 57919232 57966785 58014339 58061892 58109445 58156999 58204552 58252105 58299658 58347212 58394765 58442318 58489871 58537425 58584978 58632531 586...

output:

261875805 537365635917 5507
4565113 34361544244 96
21731840 99118630472 457
48028793 232890972421 1010
48028793 291534128674 1010
261875805 663589773927 5507
261875805 729844352592 5507
26296953 145290312255 553
165818219 478051699104 3487
21731840 65151764551 457
48028793 224581991232 1010
69760633...

result:

ok 300000 numbers

Test #12:

score: 0
Accepted
time: 786ms
memory: 10724kb

input:

1
100000
293175446 293176488 293177531 293178573 293179616 293180658 293181701 293182743 293183786 293184828 293185871 293186913 293187956 293188998 293190041 293191083 293192126 293193168 293194211 293195253 293196296 293197338 293198381 293199423 293200466 293201508 293202551 293203593 293204636 2...

output:

11495637 3725502665004 11027
43241818 13599279619796 41479
4380581 1631261369531 4202
19705317 5819565486583 18902
9306389 2879980327594 8927
18610693 5824676179860 17852
21894565 6471457729859 21002
43241818 12532806662462 41479
547312 167902572817 525
21347253 7065379449576 20477
21347253 68178153...

result:

ok 300000 numbers

Test #13:

score: 0
Accepted
time: 754ms
memory: 12280kb

input:

1
100000
231322527 231329943 231337358 231344774 231352190 231359606 231367022 231374437 231381853 231389269 231396685 231404100 231411516 231418932 231426348 231433763 231441179 231448595 231456011 231463426 231470842 231478258 231485674 231493090 231500505 231507921 231515337 231522753 231530168 2...

output:

38739949 4653533808025 5224
86482635 7018528724969 11662
235576562 15364150828060 31767
235576562 10692667603600 31767
235576562 10264389413884 31767
86482635 3750868844130 11662
235576562 9308890878412 31767
322059197 20986134907441 43429
235576562 15137290598854 31767
9002737 829830456034 1214
313...

result:

ok 300000 numbers

Test #14:

score: 0
Accepted
time: 745ms
memory: 11284kb

input:

1
100000
120515621 120522276 120528930 120535585 120542240 120548894 120555549 120562203 120568858 120575513 120582167 120588822 120595477 120602131 120608786 120615440 120622095 120628750 120635404 120642059 120648714 120655368 120662023 120668677 120675332 120681987 120688641 120695296 120701950 1...

output:

190701389 6500261560665 28657
117859940 10305799675413 17711
17195533 1440935342536 2584
190701389 5073433768167 28657
190701389 10017367277992 28657
117859940 2963243273355 17711
10627425 592224666606 1597
190701389 7722276061377 28657
190701389 4331033260790 28657
117859940 6393438967114 17711
499...

result:

ok 300000 numbers

Test #15:

score: 0
Accepted
time: 774ms
memory: 11696kb

input:

1
100000
554032715 554035774 554038833 554041892 554044951 554048010 554051069 554054128 554057187 554060246 554063305 554066364 554069423 554072482 554075541 554078600 554081659 554084718 554087777 554090836 554093895 554096954 554100013 554103072 554106131 554109190 554112249 554115308 554118367 5...

output:

94813706 23346133246989 30995
3059 809254263 1
167565903 32116456762468 54778
24768724 5903516910645 8097
3059 776721798 1
3059 565409136 1
3059 758918418 1
189465284 34957411578325 61937
3059 637613772 1
3059 565632443 1
121160873 25060264242688 39608
150882117 29741676137008 49324
128303638 262380...

result:

ok 300000 numbers

Test #16:

score: 0
Accepted
time: 797ms
memory: 10988kb

input:

1
100000
34043317 34050815 34058313 34065811 34073309 34080807 34088305 34095803 34103301 34110799 34118297 34125795 34133293 34140791 34148289 34155787 34163285 34170783 34178281 34185779 34193277 34200775 34208273 34215771 34223269 34230767 34238265 34245763 34253261 34260759 34268257 34275755 342...

output:

311496911 8615792711519 41544
7498 154191269 1
374727545 7204631644241 49977
7498 133481793 1
477112735 2658147641791 63632
7498 520041182 1
7498 346080085 1
7498 498117031 1
162511651 9253302918069 21674
226169671 9036003068102 30164
257383845 8976601329241 34327
236861819 8909159388479 31590
7498 ...

result:

ok 300000 numbers

Test #17:

score: 0
Accepted
time: 757ms
memory: 10744kb

input:

1
100000
50230902 50237738 50244574 50251410 50258246 50265082 50271918 50278754 50285590 50292426 50299262 50306098 50312934 50319770 50326606 50333442 50340278 50347114 50353950 50360786 50367622 50374458 50381294 50388130 50394966 50401802 50408638 50415474 50422310 50429146 50435982 50442818 504...

output:

6836001 449029528885 1000
6836001 162272958937 1000
6836001 96585825328 1000
6836001 143720052223 1000
3554721 288931221280 520
2912137 254447906004 426
6836001 50695750615 1000
6836001 370887201454 1000
6836001 180969421672 1000
6836001 133937734792 1000
6836001 118481536531 1000
6836001 1952840077...

result:

ok 300000 numbers

Test #18:

score: 0
Accepted
time: 816ms
memory: 10948kb

input:

1
100000
586392761 586396443 586400125 586403807 586407489 586411171 586414853 586418535 586422217 586425899 586429581 586433263 586436945 586440627 586444309 586447991 586451673 586455355 586459037 586462719 586466401 586470083 586473765 586477447 586481129 586484811 586488493 586492175 586495857 5...

output:

66279700 11607912609722 18001
2021419 452020037733 549
121509715 21629004097207 33001
33141691 7743432211116 9001
132555718 27357811670168 36001
3682001 720340275474 1000
92053707 15845596897819 25001
184103732 30856017779938 50001
158329725 26856721049272 43001
3682001 631287399289 1000
62597699 14...

result:

ok 300000 numbers

Test #19:

score: 0
Accepted
time: 743ms
memory: 11344kb

input:

1
100000
97920250 97925338 97930427 97935515 97940603 97945692 97950780 97955868 97960956 97966045 97971133 97976221 97981309 97986398 97991486 97996574 98001663 98006751 98011839 98016927 98022016 98027104 98032192 98037280 98042369 98047457 98052545 98057634 98062722 98067810 98072898 98077987 980...

output:

156978207 4813471800784 30851
19096276 2060207701863 3753
452856 37070480687 89
90367669 3441319433792 17760
90367669 3719200015967 17760
90367669 6655516684785 17760
4660855 313429972238 916
247345876 8289626958411 48611
247345876 11901618785639 48611
23757131 1120987647898 4669
90367669 7816650863...

result:

ok 300000 numbers

Test #20:

score: 0
Accepted
time: 732ms
memory: 12468kb

input:

1
100000
661205074 661207021 661208967 661210914 661212860 661214807 661216753 661218700 661220646 661222593 661224540 661226486 661228433 661230379 661232326 661234272 661236219 661238165 661240112 661242058 661244005 661245951 661247898 661249845 661251791 661253738 661255684 661257631 661259577 6...

output:

16763613 6084638831340 8612
57397661 21172793543560 29487
16763613 6112466428920 8612
16763613 6067942272792 8612
74161274 26454515279295 38099
16763613 7141618158218 8612
16763613 6089584097175 8612
7106822 3048926350335 3651
40634048 14987626040483 20875
2549969 881208165040 1310
40634048 14083518...

result:

ok 300000 numbers

Test #21:

score: 0
Accepted
time: 769ms
memory: 11100kb

input:

1
100000
348665 358568 368471 378375 388278 398182 408085 417988 427892 437795 447699 457602 467506 477409 487312 497216 507119 517023 526926 536829 546733 556636 566540 576443 586347 596250 606153 616057 625960 635864 645767 655670 665574 675477 685381 695284 705187 715091 724994 734898 744801 7547...

output:

169893067 2931539963345 17155
261776942 4097386767519 26433
169893067 11011144550663 17155
431670009 5855261165672 43588
261776942 324395702473 26433
261776942 9776637524210 26433
431670009 13375384392461 43588
169893067 12542730549668 17155
78009192 3450752721304 7877
22510460 526029078914 2273
138...

result:

ok 300000 numbers

Test #22:

score: 0
Accepted
time: 769ms
memory: 11516kb

input:

1
100000
115991978 115997547 116003117 116008686 116014256 116019826 116025395 116030965 116036535 116042104 116047674 116053243 116058813 116064383 116069952 116075522 116081092 116086661 116092231 116097800 116103370 116108940 116114509 116120079 116125648 116131218 116136788 116142357 116147927 1...

output:

54621265 3383013533376 9807
15132658 418869442426 2717
115151897 5312974115959 20675
215171136 13095279348527 38633
24355949 2454612822546 4373
718481 50988321088 129
69753923 5077306634570 12524
84886581 3142062598019 15241
215171136 4903499029871 38633
115151897 8827525164295 20675
100019239 64147...

result:

ok 300000 numbers

Test #23:

score: 0
Accepted
time: 715ms
memory: 11540kb

input:

1
100000
907299661 907300462 907301263 907302064 907302866 907303667 907304468 907305269 907306071 907306872 907307673 907308474 907309275 907310077 907310878 907311679 907312480 907313281 907314083 907314884 907315685 907316486 907317288 907318089 907318890 907319691 907320492 907321294 907322095 9...

output:

1929327 2266631211674 2408
6386489 7435967875026 7971
6386489 7679567724955 7971
9326950 11063357477790 11641
3446028 4108192570214 4301
15713439 18425405503547 19612
15713439 18186168394772 19612
918193 1062488852180 1146
9326950 10742696936792 11641
15713439 18364390219910 19612
15713439 179403159...

result:

ok 300000 numbers

Test #24:

score: 0
Accepted
time: 722ms
memory: 12416kb

input:

1
100000
25932475 25933910 25935344 25936778 25938213 25939647 25941081 25942516 25943950 25945384 25946819 25948253 25949688 25951122 25952556 25953991 25955425 25956859 25958294 25959728 25961162 25962597 25964031 25965465 25966900 25968334 25969768 25971203 25972637 25974071 25975506 25976940 259...

output:

13051153 822452311004 9099
11384438 1124629898244 7937
13051153 1121480328540 9099
13051153 792839244847 9099
13051153 265898942472 9099
13051153 820011745393 9099
50537897 3331336769737 35234
13051153 1259861703800 9099
13051153 1325535105696 9099
13051153 465477174148 9099
13051153 590898754478 90...

result:

ok 300000 numbers

Test #25:

score: 0
Accepted
time: 733ms
memory: 10928kb

input:

1
100000
496160564 496164632 496168700 496172768 496176836 496180904 496184973 496189041 496193109 496197177 496201245 496205313 496209381 496213449 496217517 496221586 496225654 496229722 496233790 496237858 496241926 496245994 496250062 496254130 496258199 496262267 496266335 496270403 496274471 4...

output:

23257392 4314371148790 5717
23257392 3235786337398 5717
23257392 2876296829254 5717
23257392 3066216692326 5717
23257392 3411309874822 5717
23257392 3215761722886 5717
19929677 4109606454515 4899
23257392 3788986663510 5717
23257392 3770148175990 5717
1570291 292740502207 386
23257392 2918811341830 ...

result:

ok 300000 numbers

Test #26:

score: 0
Accepted
time: 726ms
memory: 11028kb

input:

1
100000
201910699 201913818 201916937 201920056 201923175 201926294 201929413 201932532 201935651 201938770 201941889 201945008 201948127 201951246 201954365 201957484 201960603 201963722 201966841 201969960 201973079 201976198 201979317 201982436 201985555 201988674 201991793 201994912 201998031 2...

output:

2810220 201581839728 901
2810220 333844844028 901
2810220 305798848428 901
2810220 308417973468 901
2810220 249068937288 901
2810220 194612494128 901
2810220 211850383608 901
2810220 217841772648 901
2810220 255139012488 901
2810220 245612366688 901
2810220 211274288508 901
2810220 267981717888 901
...

result:

ok 300000 numbers

Test #27:

score: 0
Accepted
time: 669ms
memory: 11648kb

input:

1
100000
218481045 218483479 218485913 218488347 218490781 218493215 218495649 218498083 218500517 218502951 218505385 218507820 218510254 218512688 218515122 218517556 218519990 218522424 218524858 218527292 218529726 218532160 218534594 218537028 218539462 218541896 218544330 218546764 218549198 2...

output:

189853 18884804354 78
189853 18408653030 78
189853 20465330579 78
189853 21558883859 78
189853 19701741813 78
189853 23138081113 78
189853 17238399138 78
189853 21807401436 78
189853 19989748814 78
189853 32501061514 78
189853 18938912459 78
189853 33145232743 78
189853 28510731160 78
189853 2341412...

result:

ok 300000 numbers

Test #28:

score: 0
Accepted
time: 745ms
memory: 10924kb

input:

1
100000
74836989 74842807 74848624 74854442 74860260 74866078 74871896 74877713 74883531 74889349 74895167 74900985 74906802 74912620 74918438 74924256 74930074 74935891 74941709 74947527 74953345 74959163 74964980 74970798 74976616 74982434 74988252 74994069 74999887 75005705 75011523 75017340 750...

output:

22607943 1235376399362 3886
159238808 3765276064408 27371
159238808 4471977894312 27371
135816374 7614336874084 23345
3903739 237641936745 671
104586462 7162025228866 17977
159238808 3307782969024 27371
159238808 4626917254496 27371
159238808 3042968831320 27371
159238808 2767485693480 27371
1397201...

result:

ok 300000 numbers

Test #29:

score: 0
Accepted
time: 759ms
memory: 11700kb

input:

1
100000
290725681 290731969 290738257 290744545 290750833 290757121 290763409 290769697 290775985 290782273 290788560 290794848 290801136 290807424 290813712 290820000 290826288 290832576 290838864 290845152 290851440 290857728 290864015 290870303 290876591 290882879 290889167 290895455 290901743 2...

output:

133863448 11421178040953 21289
189014761 14562758780446 30060
80963209 7588731490131 12876
189014761 19007629900122 30060
189014761 11171455938584 30060
1125537 58434072733 179
1125537 87825220413 179
1125537 86230334484 179
1125537 141738442712 179
1125537 125295472679 179
167629558 8386107234288 2...

result:

ok 300000 numbers

Test #30:

score: 0
Accepted
time: 683ms
memory: 12584kb

input:

1
100000
346860382 346864249 346868116 346871983 346875850 346879717 346883584 346887451 346891318 346895185 346899052 346902919 346906786 346910653 346914520 346918387 346922254 346926121 346929988 346933855 346937722 346941589 346945456 346949323 346953190 346957057 346960924 346964791 346968658 3...

output:

1426922 177912347455 369
1426922 154435199789 369
1426922 185007003639 369
1426922 161907990303 369
1426922 144565180315 369
1426922 178203439543 369
1426922 211945864077 369
1426922 133841861485 369
1426922 173488889255 369
1426922 165941898797 369
1426922 205163703811 369
1426922 145643933347 369
...

result:

ok 300000 numbers

Test #31:

score: 0
Accepted
time: 864ms
memory: 11004kb

input:

1
100000
63621122 63630249 63639376 63648503 63657630 63666757 63675884 63685011 63694138 63703265 63712392 63721519 63730646 63739773 63748900 63758027 63767154 63776281 63785408 63794535 63803662 63812789 63821916 63831043 63840170 63849297 63858424 63867551 63876678 63885805 63894932 63904059 639...

output:

37393318 1714096617387 4097
37393318 1481285819519 4097
37393318 1958200197291 4097
37393318 3130106783411 4097
37393318 1577311860143 4097
37393318 705037931157 4097
37393318 2678283322017 4097
37393318 1153458600613 4097
37393318 993602166163 4097
37393318 1602514956475 4097
37393318 1421830443899...

result:

ok 300000 numbers

Test #32:

score: 0
Accepted
time: 715ms
memory: 11024kb

input:

1
100000
211819048 211824325 211829601 211834877 211840154 211845430 211850707 211855983 211861260 211866536 211871813 211877089 211882365 211887642 211892918 211898195 211903471 211908748 211914024 211919301 211924577 211929853 211935130 211940406 211945683 211950959 211956236 211961512 211966789 2...

output:

47488 2063936621 9
47488 3297342445 9
47488 5504774637 9
47488 2174916077 9
47488 2389134445 9
47488 2888613229 9
47488 2833004781 9
47488 2610476013 9
47488 5499171053 9
47488 2644429933 9
47488 2058855405 9
47488 5058007533 9
47488 5214907885 9
47488 2327305069 9
47488 3511655789 9
47488 271727652...

result:

ok 300000 numbers

Test #33:

score: 0
Accepted
time: 680ms
memory: 10868kb

input:

1
100000
584688396 584689417 584690439 584691461 584692482 584693504 584694526 584695547 584696569 584697591 584698612 584699634 584700656 584701677 584702699 584703720 584704742 584705764 584706785 584707807 584708829 584709850 584710872 584711894 584712915 584713937 584714959 584715980 584717002 5...

output:

77645 47314773559 76
77645 45830589384 76
77645 45706978544 76
77645 45087449089 76
77645 44656131114 76
77645 46531879024 76
77645 50204332234 76
77645 45305864474 76
77645 45731048494 76
77645 47320208709 76
77645 44459689264 76
77645 46560297094 76
77645 47036571524 76
77645 44446101389 76
77645 ...

result:

ok 300000 numbers

Test #34:

score: 0
Accepted
time: 692ms
memory: 10716kb

input:

1
100000
282043031 282046589 282050146 282053704 282057262 282060820 282064378 282067936 282071494 282075051 282078609 282082167 282085725 282089283 282092841 282096399 282099957 282103514 282107072 282110630 282114188 282117746 282121304 282124862 282128419 282131977 282135535 282139093 282142651 2...

output:

3611231 351781407008 1015
3611231 414923781043 1015
3611231 313419300095 1015
597721 57155369757 168
3611231 294348389184 1015
3611231 435710026679 1015
3611231 331923247739 1015
3611231 581849322787 1015
3611231 334765286536 1015
3611231 327571714384 1015
3611231 473057377681 1015
3611231 322382375...

result:

ok 300000 numbers

Test #35:

score: 0
Accepted
time: 748ms
memory: 10756kb

input:

1
100000
9114825 9122753 9130682 9138610 9146539 9154467 9162396 9170325 9178253 9186182 9194110 9202039 9209967 9217896 9225824 9233753 9241682 9249610 9257539 9265467 9273396 9281324 9289253 9297181 9305110 9313038 9320967 9328896 9336824 9344753 9352681 9360610 9368538 9376467 9384395 9392324 940...

output:

128529680 7092861691142 16211
128529680 4625477424182 16211
47706069 3203826106165 6017
128529680 8184207204022 16211
128529680 1242447716902 16211
128529680 1580223715942 16211
128529680 7666489652982 16211
128529680 2617715292902 16211
128529680 6359214277702 16211
6707551 179015287192 846
3311754...

result:

ok 300000 numbers

Test #36:

score: 0
Accepted
time: 752ms
memory: 11300kb

input:

1
100000
31509588 31516095 31522602 31529110 31535617 31542125 31548632 31555140 31561647 31568155 31574662 31581170 31587677 31594185 31600692 31607199 31613707 31620214 31626722 31633229 31639737 31646244 31652752 31659259 31665767 31672274 31678782 31685289 31691796 31698304 31704811 31711319 317...

output:

67150478 2900771173246 10319
186790127 3974720532854 28704
119639649 4712614369929 18385
186790127 8144436537875 28704
14661307 668703265654 2253
186790127 6320991318101 28704
67150478 1383103219967 10319
186790127 6745565276772 28704
67150478 5879767828761 10319
119639649 6180353583860 18385
231665...

result:

ok 300000 numbers