QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#772150#9542. Friendship is MagicKevin5307AC ✓761ms3896kbC++236.4kb2024-11-22 17:12:232024-11-22 17:12:29

Judging History

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

  • [2024-11-22 17:12:29]
  • 评测
  • 测评结果:AC
  • 用时:761ms
  • 内存:3896kb
  • [2024-11-22 17:12:23]
  • 提交

answer

#include<bits/stdc++.h>
//#pragma GCC optimize("O2")
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb emplace_back
#define mp make_pair
#define ALL(x) (x).begin(),(x).end()
#define rALL(x) (x).rbegin(),(x).rend()
#define srt(x) sort(ALL(x))
#define rev(x) reverse(ALL(x))
#define rsrt(x) sort(rALL(x))
#define sz(x) (int)(x.size())
#define inf 0x3f3f3f3f
#define pii pair<int,int>
#define lb(v,x) (int)(lower_bound(ALL(v),x)-v.begin())
#define ub(v,x) (int)(upper_bound(ALL(v),x)-v.begin())
#define uni(v) v.resize(unique(ALL(v))-v.begin())
#define longer __int128_t
#define div _div
void die(string S){puts(S.c_str());exit(0);}
const ll mod=1e9+7;
ll inve[20];
inline ll inv(ll a)
{
if(a<20)return inve[a];
return mod-inve[mod-a];
}
ll pw10[19];
ll interpolate(vector<ll> vx,vector<ll> vy,ll X)
{
	ll ans=0;
	for(int i=0;i<sz(vx);i++)
	{
		for(int j=0;j<sz(vx);j++) if(i!=j)
			vy[i]=vy[i]*(X%mod-vx[j]%mod+mod)%mod*inv((vx[i]-vx[j]+mod)%mod)%mod;
		ans=(ans+vy[i])%mod;
	}
	return ans;
}
inline ll div(ll a,ll b)
{
	if(a>=0) return a/b;
	return -((-a+b-1)/b);
}
ll calc1(int b,int c,ll Lx,ll Rx,ll Ly,ll Ry)
{
	int a=17-b;
	/*
		Limit 0: y >= x - c*10^b + 1
		Cmp 0: x - c*10^b + 1 (?) Ly
		Limit 1: y <= 10x + c
		Cmp 1: 10x + c (?) Ry
		Limit 2: y <= [ 11x - c*(10^b-1) ] /2
		- Notice that now the cost is (c*10^k + y - x)
		Cmp 2: [ 11x - c*(10^b-1) ] /2 (?) Ry
		Cmp 3: [ 11x - c*(10^b-1) ] /2 (?) 10x + c
	*/
	ll ans=0;
	for(int state=0;state<8;state++)
	{
		ll nLx=Lx,nRx=Rx;
		if(state&1) // Cmp 0: >=
			nLx=max(nLx,c*pw10[b]+Ly-1);
		else // Cmp 0: <
			nRx=min(nRx,Ly+c*pw10[b]-2);
		if(state&2) // Cmp 1: >=
			nLx=max(nLx,div((Ry-c+9),10));
		else // Cmp 1: <
			nRx=min(nRx,div((Ry-c-1),10));
		if(state&4) // Cmp 2: >=
			nLx=max(nLx,div((Ry*2+c*(pw10[b]-1)+10),11));
		else // Cmp 2: <
			nRx=min(nRx,div((Ry*2-1+c*(pw10[b]-1)),11));
		function<ll(ll)> calc=[&](ll x)
		{
			ll nLy=Ly,nRy=Ry;
			nRy=min(nRy,div((11*x-c*(pw10[b]-1)),2));
			nRy=min(nRy,10*x+c);
			nLy=max(nLy,x-c*pw10[b]+1);
			if(nLy>nRy) return 0ll;
			ll Cnt=max(0ll,nRy-nLy+1)%mod;
			ll Cost=(Cnt*(c*pw10[b]%mod-x%mod+mod)%mod+(nRy+nLy)%mod*Cnt%mod*(mod+1)/2)%mod;
			return Cost;
		};
		if(nLx>nRx) continue;
		for(int j=0;j<2;j++)
		{
			ll Lx2=nLx;
			ll Rx2=nRx;
			while(Lx2%2!=j&&Lx2<=Rx2) Lx2++;
			while(Rx2%2!=j&&Lx2<=Rx2) Rx2--;
			if(Lx2>Rx2) continue;
			ll V1=calc(Lx2);
			ll V2=calc(Rx2);
			if(!V1&&!V2) continue;
			if(!V1)
			{
				ll l=div(Lx2,2),r=div(Rx2,2);
				while(l<r)
				{
					ll mid=(l+r)/2;
					ll Mid=mid*2+j;
					if(!calc(Mid))
						l=mid+1;
					else
						r=mid;
				}
				Lx2=l*2+j;
			}
			if(!V2)
			{
				ll l=div(Lx2,2),r=div(Rx2,2);
				while(l<r)
				{
					ll mid=(l+r+1)/2;
					ll Mid=mid*2+j;
					if(!calc(Mid))
						r=mid-1;
					else
						l=mid;
				}
				Rx2=l*2+j;
			}
			if(Lx2>Rx2) continue;
			if(Rx2-Lx2<=10)
			{
				for(ll val=Lx2;val<=Rx2;val+=2)
					ans=(ans+calc(val))%mod;
			}
			else
			{
				vector<ll> vx(4),vy(4);
				for(int i=0;i<=3;i++)
					vx[i]=Lx2+i*2;
				for(int i=0;i<=3;i++)
					vy[i]=calc(vx[i]);
				for(int i=1;i<=3;i++)
					vy[i]=(vy[i]+vy[i-1])%mod;
				ans=(ans+interpolate(vx,vy,Rx2));
			}
		}
	}
	return ans;
}
ll calc2(int b,int c,ll Lx,ll Rx,ll Ly,ll Ry)
{
	int a=17-b;
	/*
		Limit 0: y >= x - c*10^b + 1
		Cmp 0: x - c*10^b + 1 (?) Ly
		Limit 1: y <= 10x + c
		Cmp 1: 10x + c (?) Ry
		Limit 2: y >= [ 11x - c*(10^b-1) ] /2 + 1
		- Notice that now the cost is (10x + c - y)
		Cmp 2: [ 11x - c*(10^b-1) ] /2 + 1 (?) Ly
		Cmp 3: [ 11x - c*(10^b-1) ] /2 + 1 (?) x - c*10^b + 1
	*/
	ll ans=0;
	for(int state=0;state<8;state++)
	{
		ll nLx=Lx,nRx=Rx;
		if(state&1) // Cmp 0: >=
			nLx=max(nLx,c*pw10[b]+Ly-1);
		else // Cmp 0: <
			nRx=min(nRx,Ly+c*pw10[b]-2);
		if(state&2) // Cmp 1: >=
			nLx=max(nLx,div((Ry-c+9),10));
		else // Cmp 1: <
			nRx=min(nRx,div((Ry-c-1),10));
		if(state&4) // Cmp 2: >=
			nLx=max(nLx,div((Ly*2-2+c*(pw10[b]-1)+10),11));
		else // Cmp 2: <
			nRx=min(nRx,div((Ly*2-3+c*(pw10[b]-1)),11));
		function<ll(ll)> calc=[&](ll x)
		{
			ll nLy=Ly,nRy=Ry;
			nLy=max(nLy,div((11*x-c*(pw10[b]-1)),2)+1);
			nRy=min(nRy,10*x+c);
			nLy=max(nLy,x-c*pw10[b]+1);
			if(nLy>nRy) return 0ll;
			ll Cnt=max(0ll,nRy-nLy+1)%mod;
			ll Cost=(Cnt*((10*x%mod+c)%mod)%mod-(nRy+nLy)%mod*Cnt%mod*(mod+1)/2%mod+mod)%mod;
			return Cost;
		};
		if(nLx>nRx) continue;
		for(int j=0;j<2;j++)
		{
			ll Lx2=nLx;
			ll Rx2=nRx;
			while(Lx2%2!=j&&Lx2<=Rx2) Lx2++;
			while(Rx2%2!=j&&Lx2<=Rx2) Rx2--;
			if(Lx2>Rx2) continue;
			ll V1=calc(Lx2);
			ll V2=calc(Rx2);
			if(!V1&&!V2) continue;
			if(!V1)
			{
				ll l=div(Lx2,2),r=div(Rx2,2);
				while(l<r)
				{
					ll mid=(l+r)/2;
					ll Mid=mid*2+j;
					if(!calc(Mid))
						l=mid+1;
					else
						r=mid;
				}
				Lx2=l*2+j;
			}
			if(!V2)
			{
				ll l=div(Lx2,2),r=div(Rx2,2);
				while(l<r)
				{
					ll mid=(l+r+1)/2;
					ll Mid=mid*2+j;
					if(!calc(Mid))
						r=mid-1;
					else
						l=mid;
				}
				Rx2=l*2+j;
			}
			if(Lx2>Rx2) continue;
			if(Rx2-Lx2<=10)
			{
				for(ll val=Lx2;val<=Rx2;val+=2)
					ans=(ans+calc(val))%mod;
			}
			else
			{
				vector<ll> vx(4),vy(4);
				for(int i=0;i<=3;i++)
					vx[i]=Lx2+i*2;
				for(int i=0;i<=3;i++)
					vy[i]=calc(vx[i]);
				for(int i=1;i<=3;i++)
					vy[i]=(vy[i]+vy[i-1])%mod;
				ans=(ans+interpolate(vx,vy,Rx2));
			}
		}
	}
	return ans;
}
ll calc(int b,int c,ll Lx,ll Rx,ll Ly,ll Ry)
{
	if(Lx>Rx||Ly>Ry) return 0;
	ll res=(calc1(b,c,Lx,Rx,Ly,Ry)+calc2(b,c,Lx,Rx,Ly,Ry))%mod;
	return res;
}
ll f(ll lim)
{
	if(!lim) return 0;
	if(lim==1000000000000000000ll) return (f(lim-1)+1)%mod;
	ll res=0;
	for(int b=0;b<18;b++) for(int c=0;c<10;c++)
	{
		int a=17-b;
		res=(res+calc(b,c,0,lim/pw10[b+1]-1,0,pw10[b]-1))%mod;
		if(c*pw10[b]<=lim%pw10[b+1])
			res=(res+calc(b,c,lim/pw10[b+1],lim/pw10[b+1],0,min((lim%pw10[b+1]-c*pw10[b]),pw10[b]-1)))%mod;
	}
	return res;
}
ll to_int(string s)
{
	ll res=0;
	for(auto ch:s)
		res=(res*10+(ch^48));
	return res;
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
inve[1]=1;
for(int i=2;i<20;i++) inve[i]=(mod-mod/i)*inve[mod%i]%mod;
	pw10[0]=1;
	for(int i=1;i<19;i++)
		pw10[i]=pw10[i-1]*10;
	int t;
	cin>>t;
	while(t--)
	{
		ll l,r;
		cin>>l>>r;
		cout<<(f(r)-f(l-1)+mod)%mod<<'\n';
	}
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
108 112
114514 1919810

output:

31
86328270

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 761ms
memory: 3600kb

input:

1000
108 112
114514 1919810
1000000000000000000 1000000000000000000
10 1000000000000000000
100000000000000000 1000000000000000000
404718167579889375 404718167579889376
421944017227403970 421944017227403971
189682000860657168 189682000860657168
216210251475406689 216210251475406690
688200258410653365...

output:

31
86328270
1
452700982
455999919
350342417
389080093
670975168
518392877
555093785
413297421
235070083
138094687
605211889
318867094
71967670
277827524
698329989
308576750
857743987
133005695
138983066
102622955
299442575
85677303
140571610
102310491
589625139
652245813
131923105
229861338
83602964...

result:

ok 1000 lines

Test #3:

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

input:

1000
108 112
114514 1919810
1000000000000000000 1000000000000000000
10 1000000000000000000
100000000000000000 1000000000000000000
234530223589181386 234530223589181386
408551941144630716 408551941144630717
158047031427710586 158047031427710586
489780405752551905 489780405752551905
740503344316362098...

output:

31
86328270
1
452700982
455999919
354651163
527842449
269663555
262771500
848282491
242561074
704232081
312867565
122009887
860436261
349789684
224845008
625633663
232585111
280840549
194288301
489686304
68118617
241766024
108426771
893336538
86863459
891261681
845080039
20869324
227720620
111588919...

result:

ok 1000 lines

Test #4:

score: 0
Accepted
time: 79ms
memory: 3652kb

input:

100
265714758284843092 265714758284843093
918065131742690352 918065131742690353
10974116958420843 10974116958420844
400062241898390772 400062241898390773
953883181221418384 953883181221418385
717995546146120948 717995546146120949
822140371684157809 822140371684157809
70453204366469836 70453204366469...

output:

38256669
350749557
102640651
996657063
464929586
143749188
137982562
592033265
616778974
312738452
262527485
162305811
481926909
18789782
482531634
674023418
267293175
47539540
201887243
286594273
454003836
348034968
848568687
385866275
637829215
477702784
177756297
636074139
142434433
101319133
129...

result:

ok 100 lines

Test #5:

score: 0
Accepted
time: 81ms
memory: 3896kb

input:

100
266540997167959220 266540997167959224
881371880336470942 881371880336470942
596383801642802764 596383801642802773
64197408773386902 64197408773386903
418807658396628736 418807658396628737
127608880971207922 127608880971207932
363522998002087569 363522998002087569
52330388046761516 52330388046761...

output:

492908875
248333754
464189675
137174362
44357843
279589454
361435429
38982083
189242392
227795545
753619475
435729649
553495445
382101043
203511016
560656795
359293254
201283527
312112023
427713500
966684108
572909965
777786843
388192689
373080269
471468826
71392278
820936005
369968463
442142900
903...

result:

ok 100 lines

Test #6:

score: 0
Accepted
time: 80ms
memory: 3872kb

input:

100
267367244641009940 267367244641010032
621306592075475643 621306592075475702
405165527476927880 405165527476927910
951704612503158912 951704612503158933
791504024322595587 791504024322595654
324995645468352 324995645468424
3487150939887651 3487150939887746
25506937973764579 25506937973764646
6648...

output:

748774768
749854946
224633394
868005106
885771221
973275841
481554192
328724038
449921321
298758451
929139202
369892070
57450776
659609011
370437937
899756126
156499129
295187384
315182333
70381598
962516228
145843164
335134710
302968586
821989155
688239354
373907729
332948458
709177969
48081665
492...

result:

ok 100 lines

Test #7:

score: 0
Accepted
time: 76ms
memory: 3580kb

input:

100
268193483524126068 268193483524126706
584613336374288936 584613336374289560
990575220751244394 990575220751244660
839211816232930932 839211816232931461
164200394543529742 164200394543530260
873041110319728774 873041110319729095
643451299582720427 643451299582721397
998683496490702225 99868349649...

output:

541124515
452554083
901294590
328726088
872064661
840792649
969205371
150814671
918317978
456593874
574849872
971431007
797833757
899353964
93205153
738388149
938236044
778837819
811645247
155264626
196389571
127343374
811561515
622064959
299017966
830067350
7605147
427644584
676349531
326944959
771...

result:

ok 100 lines

Test #8:

score: 0
Accepted
time: 81ms
memory: 3576kb

input:

100
269019726702209492 269019726702210679
547920080673102230 547920080673110573
575984909730593620 575984909730599719
503346978812959766 503346978812964013
536896760469496592 536896760469496932
745757220699021908 745757220699029249
283415456815487804 283415456815497293
748488013857896695 74848801385...

output:

630143488
554659288
131732449
244134847
983399164
103709492
411572482
50687205
875000248
663701774
692364937
153176156
160965841
745894305
777957749
621234039
499394977
792134600
459831956
772850159
1922144
665492783
684136128
307621919
549188007
550263368
837032989
847040150
374811754
30559164
6252...

result:

ok 100 lines

Test #9:

score: 0
Accepted
time: 80ms
memory: 3580kb

input:

100
269845965585325620 269845965585398094
287854792412106931 287854792412107682
384766635564718736 384766635564748682
390854186837699081 390854186837705800
909593130690430739 909593130690441881
618473335373282339 618473335373380371
923379609753287877 923379609753345817
721664568079867054 72166456807...

output:

14112631
437890253
473927355
820249226
64428166
3557116
606424071
732259247
100860470
374031275
310745027
889012707
891178522
679910539
322174605
438425709
785596604
816821860
469800459
404629041
731679173
58284425
461454737
207298177
491319844
844428058
894669664
183876436
296582846
291041012
93416...

result:

ok 100 lines

Test #10:

score: 0
Accepted
time: 82ms
memory: 3672kb

input:

100
359280689112103486 359280689112186393
176110798769117224 176110798769169811
635753196789286559 635753196789368788
901357146438813768 901357146438868034
227473967007487837 227473967007579558
803441576195331266 803441576195368323
670735071175295768 670735071175317705
961323991610147027 96132399161...

output:

530576123
404434764
429196429
368891722
361257868
665081089
706726185
79237992
29920318
525953761
708574458
231676278
843447593
15785648
685747511
58099602
711218496
744994770
360679445
895697462
1427024
691104492
402709773
999695550
904710365
466845262
657499956
65672541
555077622
657928223
6035297...

result:

ok 100 lines

Test #11:

score: 0
Accepted
time: 77ms
memory: 3868kb

input:

100
270672213058376340 270672213059007687
251161541005887520 251161541006681946
970176324544067953 970176324544299146
54989353712695211 54989353713418261
282289500911364894 282289500911830872
714561486902318658 714561486902628096
786715795250896551 786715795251353285
471469089742028820 4714690897430...

output:

274057095
746587264
972818351
383082731
488949249
267232120
97494234
198830243
119563401
959341276
386415319
161420006
850411589
999908702
611616994
636934330
234691490
491280604
319991400
578152113
465742161
271626206
725842128
806485910
45270073
706815140
366292342
282173164
170266305
614246368
56...

result:

ok 100 lines

Test #12:

score: 0
Accepted
time: 80ms
memory: 3572kb

input:

100
367392890842765685 367392890843416607
193086988313596028 193086988314577917
706498708545222755 706498708545997685
742584464306229097 742584464306325903
543459535787052367 543459535787950089
129009492275582495 129009492275780146
829033685340117897 829033685341074230
832533203363888214 83253320336...

output:

933722794
673949049
476021589
567968289
839231472
980043759
501049818
263513819
490291147
176528809
91205277
238306193
460554433
552061274
642241119
686497395
783942892
392408769
251433460
704081924
127341421
789127034
625359848
117481838
973866396
893053173
90575370
505102736
767173156
94918986
649...

result:

ok 100 lines

Test #13:

score: 0
Accepted
time: 80ms
memory: 3876kb

input:

100
271498451941492468 271498451941501050
991096248449924916 991096248459048412
778958050378193069 778958050386652186
942496553147499926 942496553157050223
654985866837331745 654985866842738051
587277601576579089 587277601584495725
426679948188696632 426679948192334274
444645639669031883 44464563967...

output:

595437314
895524963
307660359
552847643
870041807
668834065
116071711
909436399
376440866
471860351
953824854
439592854
440357954
577049511
479063759
192906449
419074123
141935881
548904120
316920565
709070938
406960198
517004652
167766002
257736425
664009759
126009479
342796888
889680716
4483712
95...

result:

ok 100 lines

Test #14:

score: 0
Accepted
time: 81ms
memory: 3652kb

input:

100
375505101163362477 375505101167848427
210063182153042128 210063182155822491
242044574620878655 242044574622581586
978225419003422132 978225419008913020
194630360825574585 194630360828089959
112507673099759950 112507673106111587
25126978475415749 25126978483626127
378397406768899039 3783974067700...

output:

533740006
74104872
662546292
680130200
873265432
271928992
108601773
474352073
985100322
323145691
384774730
129852585
659343541
636743068
683207714
866667327
872197361
33161934
265884728
505543048
753127768
225929039
524509414
446603107
623105737
498931617
177556703
196898065
365275363
677359980
27...

result:

ok 100 lines

Test #15:

score: 0
Accepted
time: 80ms
memory: 3592kb

input:

100
272324690824608596 272324690834840063
954402997043705505 954402997134155514
364367743652509591 364367743674453965
606631724317463352 606631724355752516
27682237058265900 27682237124555690
459993716250839520 459993716255273417
66644101126496713 66644101129223855
194450161331193649 194450161386135...

output:

534834674
601125917
505856035
376862455
760979514
641392989
283786554
630562757
820710017
8852493
791959762
170760250
378861434
495249796
691978152
588621557
725239134
547380557
772651037
991968579
384495860
492374420
375979785
533581288
199813841
810634122
522431715
516084918
251005920
976615925
86...

result:

ok 100 lines

Test #16:

score: 0
Accepted
time: 81ms
memory: 3580kb

input:

100
160245266039248788 160245266094071181
3667334842745043 3667334937620162
656876281964062643 656876282037272083
488016689359782662 488016689390920442
823387845957619817 823387846023626433
851990572454681907 851990572472489168
807046734461902933 807046734498848823
433789415110749667 433789415119730...

output:

139079928
149109722
360609190
337684003
711803729
163045529
754168681
955325585
268241301
722707794
545626091
782444128
230908898
692554518
200604399
894810233
328331680
965392244
878974694
993927188
31213214
118072440
885317891
675800024
459841672
789365173
566023398
959109988
32912416
617696117
56...

result:

ok 100 lines

Test #17:

score: 0
Accepted
time: 80ms
memory: 3580kb

input:

100
273150934002692020 273150934137711397
694337708782710206 694337709101867684
949777432631858809 949777433190473426
494138923752268075 494138924542786857
400378607279200047 400378607446598315
332709826630132654 332709827207801373
706608249769329490 706608250084711188
167626711258196712 16762671222...

output:

777193
758196118
674708812
476416687
430466802
863758330
807536548
53017126
765761768
628203367
720774132
679991797
569565139
287206776
384674489
589205041
130756500
336175976
217221115
399415283
280904370
224153410
887616871
198744326
814405515
534007992
291101481
856514361
105612774
516430672
4876...

result:

ok 100 lines

Test #18:

score: 0
Accepted
time: 80ms
memory: 3872kb

input:

100
168357472064878283 168357472377080692
20643520092256551 20643520964300165
71707989307246640 71707989395716723
360732804034043093 360732804852354174
463351994600452602 463351995478034699
825167122381684970 825167123114138317
907739281745150692 907739281877330895
734417525279147685 734417526247541...

output:

527777631
280754280
903203963
546663675
693394618
638699147
674155127
427449178
461547851
269708611
57872619
462764371
174437839
792844566
789652737
940883604
381100676
670068627
324440433
410926129
517314783
448965971
28444229
960075850
792736561
979641082
874025472
485285682
805664247
512283757
54...

result:

ok 100 lines

Test #19:

score: 0
Accepted
time: 80ms
memory: 3636kb

input:

100
996517375802030536 996517383244307242
624045669640274152 624045675151906681
778062383071550184 778062385105285599
661230177799844003 661230184066326057
891967553796619192 891967554883508711
780045434223219594 780045437574966221
732895008312183571 732895013649168772
494244581673542382 49424458805...

output:

603358902
946659907
69639350
412873138
43851274
347582604
430348910
724750977
577116598
191811936
384465451
69711558
647643793
158380358
488602266
495914119
730573381
435733172
893096771
35236726
62702945
448029104
550477697
417630378
95859117
448262354
577340835
818272654
107079158
8501638
3512862
...

result:

ok 100 lines

Test #20:

score: 0
Accepted
time: 80ms
memory: 3640kb

input:

100
665165169508614046 665165179308388125
450715146361595040 450715151403890645
852288517283002988 852288518381862337
913315629503532549 913315630749855704
532462495277029144 532462498071371915
282596655433296453 282596657415148520
683144464137990864 683144473924438526
349993667306263606 34999367663...

output:

676409079
248503071
835276063
68328528
772215741
161641342
649160033
145596932
464410493
652357520
889069440
195937859
44973934
612939926
22202365
143922420
82103816
639580941
324839593
523358361
244842526
110905708
83984952
541060506
789057544
529241261
253379953
739426786
952890997
470282487
10651...

result:

ok 100 lines

Test #21:

score: 0
Accepted
time: 77ms
memory: 3868kb

input:

100
997343614685146664 997343624619479843
363980381379278852 363980403321014434
363472072050899411 363472127950133638
548737381529616022 548737411001888848
264663915427618756 264663997375616523
652761544602512729 652761633020765557
372859165544950948 372859211463042316
467421135895512741 46742122450...

output:

737730842
860606001
314971159
733441968
622555356
750487156
627988141
828697987
24522167
719208260
924203589
596796697
57593544
237827530
106773768
122048012
456140029
884807190
686218499
24730499
210981284
886965046
555818823
208641222
708285726
420456922
132626512
370310176
938203036
303105975
997...

result:

ok 100 lines

Test #22:

score: 0
Accepted
time: 80ms
memory: 3648kb

input:

100
673277379829210837 673277471201818312
467691335906073843 467691369092707115
267120228921154281 267120256250709434
951749761490869436 951749787765452026
516040690038588870 516040696098399577
48815722312898739 48815732448107925
248654399360662910 248654406658876245
446844358605735311 4468443938209...

output:

488865006
408681654
344430281
503237027
318894325
707123583
654184523
826904401
888285158
20756334
570715099
886727446
636858208
36539606
831227472
953988820
112285385
802225729
512210639
778069236
854518210
310348760
216242344
779648034
635076750
675089725
953443924
837595540
520890688
425809692
13...

result:

ok 100 lines

Test #23:

score: 0
Accepted
time: 81ms
memory: 3636kb

input:

100
998169857863230088 998169927750612370
327287125678092146 327287953703977574
658646845480129774 658647393882529027
626578941132541610 626579226776457106
234880613967299154 234881273237546773
354775524341034009 354775842818772160
994712817104945897 994713470364435846
381664360721557275 38166521531...

output:

180508078
274676000
612715865
558006497
983675161
457678211
919784922
225973187
389000316
170014928
75685750
86773616
697877926
71337359
335452027
103298007
446940346
716630540
139606015
800558380
291961836
415681597
18228683
974653552
6964515
104347755
638992085
8342963
533270545
397389138
76578005...

result:

ok 100 lines

Test #24:

score: 0
Accepted
time: 81ms
memory: 3656kb

input:

100
681389581559873037 681389861976699736
261295488595776758 261296088713576982
681951931969370973 681952425249720148
990183902068140914 990184538747270993
499618889095115892 499618948113253152
591662752337725127 591662816717045765
37536371438110845 37537289233777495
767067082465015609 7670675235573...

output:

935191040
358397958
25088967
117884558
164475618
943770200
791122172
796618665
197212957
232776356
548320812
545374899
525654254
97079823
784536601
230576785
653186120
134731219
869351900
624520884
937690867
492303145
64190685
121556519
485761889
62916199
748164522
754911203
248853725
500564851
9143...

result:

ok 100 lines

Test #25:

score: 0
Accepted
time: 82ms
memory: 3576kb

input:

100
998996101041313512 999003126509290541
67221837417096847 67230834622417619
757663491159341040 757664493624095790
100379747839416876 100380396314838305
10056655869487058 10061406118763027
398193778246000886 398197493052993426
652787467125583805 652797314255202325
190402207484677570 190408540282965...

output:

858795874
966091130
354884231
164971052
673861945
475577043
923552252
843889144
494037011
423920510
568192200
557379822
910495603
743661245
507852096
579114833
827307348
78282082
186785349
866182553
787214464
913468828
358027475
473242293
309775493
743923646
631729634
74846801
117687625
470120018
43...

result:

ok 100 lines

Test #26:

score: 0
Accepted
time: 80ms
memory: 3572kb

input:

100
689501787585502532 689508793838945822
278271682435222858 278277481987720231
96783643607522266 96789507110723739
28618038350445105 28624789705346502
706569120711451506 706572365227103645
357881819217327413 357882400970554875
826418339220591475 826424800005903943
50409551261519791 5041833564648875...

output:

358063798
364122089
617127127
367230188
199916060
890315172
946304374
104091643
125442711
785322144
923105759
867147922
145889920
341367972
289403691
382376096
607665269
166405756
904261191
292518377
550243555
990801031
65377720
32378902
628932430
831392035
450616331
354350400
962006536
834017730
58...

result:

ok 100 lines

Test #27:

score: 0
Accepted
time: 81ms
memory: 3808kb

input:

100
999822344219396936 999908320966519365
30528581715910140 30579780652009654
343073180138690266 343100367852967030
764514919009380293 764557270533287993
382753021795453908 382801912622295569
270909888625294021 270941802489404217
292751620063383887 292830534072695367
940206724851872031 9402350340232...

output:

194350135
912687999
578762656
683411075
638912841
429713933
47867629
951252614
11589548
241668617
260620254
902112125
244059006
651723175
315373649
25558771
178554193
258148983
327929366
828823805
646160839
811637875
229429770
688659128
276921447
863040195
796725847
307123468
660264649
593074631
736...

result:

ok 100 lines

Test #28:

score: 0
Accepted
time: 81ms
memory: 3652kb

input:

100
474241952461388843 474318647695045563
295247871979701662 295320879557277436
511615346655738958 511677576085042647
67052170337781991 67057073221677034
690147319767978528 690214717222221319
900728853537121098 900775989512425363
615300311298039411 615347278217454332
184140501918734918 1841781590536...

output:

946776015
229226210
964543991
559696286
549711544
361806773
339126418
262968467
586375443
830332209
856880057
632962144
901788811
125207847
893241758
363738633
180322265
346517941
608141331
147457016
375269176
158300339
672117834
302836332
609194949
936305881
710840763
13197593
959639881
774255047
9...

result:

ok 100 lines

Test #29:

score: 0
Accepted
time: 80ms
memory: 3672kb

input:

100
648583102513073 1363519718193953
770463293454914832 770926698416673552
151854905972815382 152058283231599129
652022118444185017 652096181606274692
755449392016388055 755632414830596369
143626003299554451 144136111925265304
932715773001183959 933341717035383063
913383279073842390 9143215234679333...

output:

626116125
467050156
203823674
835621424
52084980
162731840
263253845
563766357
375723289
575769711
223734677
738508393
506313064
671591605
564906905
334513920
459817861
727749242
841031393
95331639
603428091
394710796
549286160
210974305
947725128
391805006
739046426
264682679
537398393
779575248
93...

result:

ok 100 lines

Test #30:

score: 0
Accepted
time: 81ms
memory: 3808kb

input:

100
482354158487018339 482740546995047295
88852024669404577 89460194827087353
926447053998922946 927105653649168681
105486310915053470 105507324178319485
673725510234570958 674557064921647951
666947920416723384 667499573759277794
404182283375487346 404621797578154446
504363230072982512 5050289973763...

output:

843085673
161755551
791854365
311266943
785990066
132442159
273161411
878325075
356675178
149303366
630521062
292658763
978217039
771463765
881942758
812590380
413017597
29226781
700056176
924445495
931882979
790865108
112451646
954933889
773933298
748578980
369952585
334257542
132507589
901013703
6...

result:

ok 100 lines

Test #31:

score: 0
Accepted
time: 81ms
memory: 3808kb

input:

100
1474821985629201 11418714174861749
733770042048695422 736345648741121104
737264594952164599 747072129195625069
539529322173957036 545435088384266846
128145762237322210 136762921333837718
16342113678847586 25430421361087756
796051958498792633 798896973707562459
663187800736004156 6670080129125769...

output:

965150032
10801000
411009212
395746072
940155158
64926069
992480233
980554742
280573806
76315333
899313123
350761616
331246182
137298080
970661766
227393062
467364681
284496280
827603025
116780591
187019966
70962724
498305995
742169561
306886420
807164116
658822635
508570884
892441674
835716043
1614...

result:

ok 100 lines

Test #32:

score: 0
Accepted
time: 77ms
memory: 3584kb

input:

100
490466364512647834 492634478854803424
105828218508850677 114943592396307525
341278765637074239 347005772363029239
143920447197357652 151657575134890875
657303709291097979 660099412621013224
209794954736517077 210523162301041725
601213917077486921 603507790254265960
50166125263458626 554299480009...

output:

554550782
373444241
808027806
430440268
848933772
381832763
142418000
573285232
450988584
825655885
601641972
4592758
420040661
313135452
443958374
74200437
729862416
665304023
279369500
362498772
213999059
655399445
140256012
497359198
818938780
587397325
28363953
47632494
869739232
384478464
64715...

result:

ok 100 lines

Test #33:

score: 0
Accepted
time: 81ms
memory: 3620kb

input:

100
2301069458679921 61845958371204467
697076786347508715 724392562210788818
322674288226481122 419458012014420364
203664489048953166 204401962602447345
500842132458256357 527893432132043648
889058228353108008 985096767651683684
436016111436592714 491708156670189613
636364354957974515 63906653921199...

output:

539004414
972599289
749575759
470410724
675137818
579004645
418987985
16067847
708073673
890828587
870896379
804449107
683788101
972227074
589696500
59051087
683273787
674470749
848929532
574202337
311240946
123181116
538822764
457728547
763845755
959095105
281259904
108489984
306694725
605011831
65...

result:

ok 100 lines

Test #34:

score: 0
Accepted
time: 77ms
memory: 3640kb

input:

100
498578566243310034 586156369564815651
122804408053329480 126054948815783153
756110468685290931 804533841337213587
182354579184694538 222807821796488776
864253940907433594 957013797175149353
976014021616119354 994756240963791542
758574190675607318 788026762589999066
921436645231734516 97458469506...

output:

852777391
125672248
42649028
335538547
376702921
285474541
643378664
769702819
814895384
92545198
614565449
379650809
566291473
330883660
872375161
832073601
592029944
698336489
663136352
234082221
803693584
651657365
108837194
203418125
348945778
670470842
375434708
110589229
763866485
989784406
86...

result:

ok 100 lines

Test #35:

score: 0
Accepted
time: 82ms
memory: 3520kb

input:

100
3127308341796049 520792311220441865
437011498086513416 520485468026509363
131456014060606238 365408030112235244
91171692778725185 662599337569029319
873538498384223207 924563386419373980
985146379882144327 998630910571391788
75980264374392796 529753231403308819
609540909179944874 863320521570476...

output:

990630623
500644914
983434047
120394410
470793992
995872006
215375742
877344555
134273222
227733931
285737821
483480065
270937132
571219423
760792791
926086392
17863445
424259489
776035266
867017265
368328475
575727868
579916504
987057865
231001717
532366553
896002379
490284880
797478074
893871471
7...

result:

ok 100 lines

Test #36:

score: 0
Accepted
time: 82ms
memory: 3524kb

input:

100
506690772268939530 893059809107673505
916408560743032386 924497071303265925
521119742872856965 953105887068425271
13169357286054774 940017640966343964
832724009205515899 842445203224167389
43709279153689955 722293279367815033
130145114902672296 538867791846928078
553550089218608003 5598900167214...

output:

983597906
83175303
361594391
914308517
118765028
997693869
496599433
3440079
47890119
240163565
856976357
825212152
491058033
315042953
109212050
585397031
364799642
746250177
101037860
362630278
816588885
875280303
283246582
714229016
856296624
478982144
775778644
903827819
392590566
198609138
7333...

result:

ok 100 lines

Test #37:

score: 0
Accepted
time: 3ms
memory: 3868kb

input:

3
1000000000000000000 1000000000000000000
10 1000000000000000000
100000000000000000 1000000000000000000

output:

1
452700982
455999919

result:

ok 3 lines

Extra Test:

score: 0
Extra Test Passed