QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#203484#2476. Pizzo Collectorssalvator_noster#AC ✓44ms95152kbC++201.8kb2023-10-06 17:46:242023-10-06 17:46:25

Judging History

This is the latest submission verdict.

  • [2023-10-06 17:46:25]
  • Judged
  • Verdict: AC
  • Time: 44ms
  • Memory: 95152kb
  • [2023-10-06 17:46:24]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
using ll= long long ;
const ll M=2e6+10;
vector<ll>idx[22];
ll fa[M],n;
vector<ll>G[M];
ll p,k,dp[M][30],A[M],val[30];
ll tot,sz[M];
void build_tree(ll layer, ll nodeCnt) {
	if(nodeCnt==0)return ;
    idx[layer].resize(nodeCnt + 1);
    for (ll i = 1; i <= nodeCnt; i ++) idx[layer][i] = ++tot;
    if (layer) {
        for (ll i = 1; i <= nodeCnt; i ++) {
            for (ll j = i; j <= nodeCnt * p; j += nodeCnt) {
                fa[idx[layer - 1][j]] = idx[layer][i];
				G[idx[layer][i]].push_back(idx[layer-1][j]);
				//printf("%d -> %d\n",idx[layer][i],idx[layer-1][j]);
            }
        }
    }
    build_tree(layer + 1, nodeCnt / p);
}

void dfs(ll x){
	if(x<=n){
		if(A[x]){
			dp[x][A[x]]=val[A[x]];
			dp[x][0]=val[A[x]];
		}else{
			for(ll i=1;i<=26;++i){
				dp[x][i]=val[i];
				dp[x][0]=max(dp[x][0],val[i]);
			}
		}
		sz[x]=1;
	}else{
		for(ll y:G[x])dfs(y),sz[x]+=sz[y];
		for(ll i=0;i<=26;++i){
			bool fl=1;
			for(ll y:G[x]){
				dp[x][i]+=dp[y][i];
				if(dp[y][i]==0)fl=0;
			}
			if(fl)dp[x][i]+=sz[x]*val[i];
			else if(i)dp[x][i]=0;
		}
		for(ll i=0;i<=26;++i)
			dp[x][0]=max(dp[x][0],dp[x][i]);
	}
}
char s[M];
int  main(){
	scanf("%lld",&n);
	scanf("%s",s+1);
	for(ll i=1;i<=n;++i){
		if(s[i]>='A'&&s[i]<='Z')
			A[i]=s[i]-'A'+1;
	}
	scanf("%lld",&k);
	for(ll i=1;i<=k;++i){
		ll v;
		char op[10];
		scanf("%s %lld",op,&v);
		val[(*op)-'A'+1]=v;
	}
	if(n==1){
		if(A[1])printf("%lld",val[A[1]]);
		else {
			ll ans=0;
			for(int i=1;i<=26;++i)
				ans=max(ans,val[i]);
			printf("%lld",ans);
		}
		return 0;
	}
	for(ll i=2;i<=n;++i)
		if(n%i==0){
			p=i;
			break;
		}
	build_tree(0,n);	
	dfs(tot);
	printf("%lld\n",dp[tot][0]);
	return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 59140kb

input:

8
?A?B?A?C
3
A 1
B 1000
C 100000

output:

1301004

result:

ok single line: '1301004'

Test #2:

score: 0
Accepted
time: 4ms
memory: 57184kb

input:

4
ABCD
4
A 4
B 3
C 2
D 1

output:

10

result:

ok single line: '10'

Test #3:

score: 0
Accepted
time: 6ms
memory: 59280kb

input:

2
AB
2
A 1
B 2

output:

3

result:

ok single line: '3'

Test #4:

score: 0
Accepted
time: 4ms
memory: 59172kb

input:

7
???????
3
A 1
B 3
C 2

output:

42

result:

ok single line: '42'

Test #5:

score: 0
Accepted
time: 4ms
memory: 55136kb

input:

1
?
26
A 1
B 2
C 3
D 4
E 5
F 6
G 7
H 8
I 9
J 10
K 11
L 12
M 13
N 14
O 15
P 16
Q 17
R 18
S 19
T 20
U 21
V 22
W 23
X 24
Y 25
Z 26

output:

26

result:

ok single line: '26'

Test #6:

score: 0
Accepted
time: 4ms
memory: 59152kb

input:

4
A?A?
2
A 10
B 25

output:

140

result:

ok single line: '140'

Test #7:

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

input:

1
?
26
A 925691
B 784415
C 459872
D 532761
E 723841
F 43610
G 550337
H 362598
I 433441
J 830094
K 706780
L 870926
M 169396
N 614810
O 151788
P 802159
Q 74805
R 357984
S 654014
T 738826
U 367213
V 361083
W 22154
X 662187
Y 120341
Z 932546

output:

932546

result:

ok single line: '932546'

Test #8:

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

input:

8
AB??BBBC
3
A 226880
B 21007
C 187937

output:

1331550

result:

ok single line: '1331550'

Test #9:

score: 0
Accepted
time: 4ms
memory: 59232kb

input:

4
??AA
2
A 586426
B 609540

output:

7037112

result:

ok single line: '7037112'

Test #10:

score: 0
Accepted
time: 4ms
memory: 59236kb

input:

2
??
3
A 28745
B 469414
C 889999

output:

3559996

result:

ok single line: '3559996'

Test #11:

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

input:

9
D?CDADDBA
4
A 891831
B 540383
C 787792
D 316322

output:

6217922

result:

ok single line: '6217922'

Test #12:

score: 0
Accepted
time: 0ms
memory: 59268kb

input:

3
?BA
4
A 591794
B 849991
C 835076
D 706991

output:

2291776

result:

ok single line: '2291776'

Test #13:

score: 0
Accepted
time: 10ms
memory: 59100kb

input:

5
?DDDC
4
A 277536
B 300259
C 268269
D 674295

output:

2965449

result:

ok single line: '2965449'

Test #14:

score: 0
Accepted
time: 4ms
memory: 55120kb

input:

8
??A??B?A
3
A 892657
B 344729
C 759614

output:

15661428

result:

ok single line: '15661428'

Test #15:

score: 0
Accepted
time: 8ms
memory: 59092kb

input:

4
??BB
2
A 427975
B 505086

output:

6061032

result:

ok single line: '6061032'

Test #16:

score: 0
Accepted
time: 0ms
memory: 59216kb

input:

2
?B
3
A 553982
B 971440
C 799654

output:

3885760

result:

ok single line: '3885760'

Test #17:

score: 0
Accepted
time: 6ms
memory: 59208kb

input:

9
?BD???CCD
4
A 272237
B 751801
C 889541
D 404645

output:

10295999

result:

ok single line: '10295999'

Test #18:

score: 0
Accepted
time: 10ms
memory: 59152kb

input:

3
??B
4
A 357775
B 790006
C 254911
D 970091

output:

4740036

result:

ok single line: '4740036'

Test #19:

score: 0
Accepted
time: 9ms
memory: 59236kb

input:

5
????A
4
A 767484
B 111739
C 494875
D 677653

output:

7674840

result:

ok single line: '7674840'

Test #20:

score: 0
Accepted
time: 0ms
memory: 55144kb

input:

8
??A??ACB
3
A 325590
B 246789
C 560277

output:

5416491

result:

ok single line: '5416491'

Test #21:

score: 0
Accepted
time: 7ms
memory: 59232kb

input:

4
BABB
2
A 792459
B 534070

output:

3462809

result:

ok single line: '3462809'

Test #22:

score: 0
Accepted
time: 9ms
memory: 59180kb

input:

2
AB
3
A 656307
B 697344
C 427355

output:

1353651

result:

ok single line: '1353651'

Test #23:

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

input:

9
??B?ADD?B
4
A 580920
B 721154
C 858354
D 876934

output:

11066366

result:

ok single line: '11066366'

Test #24:

score: 0
Accepted
time: 8ms
memory: 57184kb

input:

3
?A?
4
A 439292
B 314685
C 246183
D 664655

output:

2635752

result:

ok single line: '2635752'

Test #25:

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

input:

5
???CA
4
A 620647
B 559270
C 553595
D 982214

output:

4120884

result:

ok single line: '4120884'

Test #26:

score: 0
Accepted
time: 0ms
memory: 59272kb

input:

8
?BAB??CC
3
A 138930
B 783078
C 166183

output:

7518998

result:

ok single line: '7518998'

Test #27:

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

input:

4
B??B
2
A 584378
B 333337

output:

4000044

result:

ok single line: '4000044'

Test #28:

score: 0
Accepted
time: 0ms
memory: 57164kb

input:

2
??
3
A 886046
B 415294
C 619440

output:

3544184

result:

ok single line: '3544184'

Test #29:

score: 0
Accepted
time: 6ms
memory: 59096kb

input:

9
D?D??CDA?
4
A 34222
B 257404
C 770908
D 891690

output:

9722030

result:

ok single line: '9722030'

Test #30:

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

input:

3
?DD
4
A 814949
B 503525
C 977750
D 568577

output:

3411462

result:

ok single line: '3411462'

Test #31:

score: 0
Accepted
time: 4ms
memory: 59092kb

input:

5
?DC??
4
A 449231
B 510080
C 954355
D 360422

output:

4177842

result:

ok single line: '4177842'

Test #32:

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

input:

8
???AAA?B
3
A 703510
B 534990
C 623491

output:

12494660

result:

ok single line: '12494660'

Test #33:

score: 0
Accepted
time: 4ms
memory: 59212kb

input:

4
ABAB
2
A 544494
B 385314

output:

3719232

result:

ok single line: '3719232'

Test #34:

score: 0
Accepted
time: 0ms
memory: 59232kb

input:

2
AA
3
A 441230
B 43946
C 171518

output:

1764920

result:

ok single line: '1764920'

Test #35:

score: 0
Accepted
time: 6ms
memory: 59216kb

input:

9
BC?C???CC
4
A 821508
B 146142
C 821764
D 293917

output:

11650838

result:

ok single line: '11650838'

Test #36:

score: 0
Accepted
time: 6ms
memory: 59096kb

input:

3
DC?
4
A 322498
B 599277
C 916029
D 410514

output:

2242572

result:

ok single line: '2242572'

Test #37:

score: 0
Accepted
time: 4ms
memory: 59092kb

input:

5
?DBBA
4
A 378999
B 968610
C 603823
D 534583

output:

3819412

result:

ok single line: '3819412'

Test #38:

score: 0
Accepted
time: 0ms
memory: 59236kb

input:

8
?B??ACC?
3
A 480537
B 890720
C 435654

output:

8554018

result:

ok single line: '8554018'

Test #39:

score: 0
Accepted
time: 0ms
memory: 59156kb

input:

4
A??B
2
A 727408
B 589715

output:

5268492

result:

ok single line: '5268492'

Test #40:

score: 0
Accepted
time: 10ms
memory: 59156kb

input:

2
BC
3
A 73285
B 863162
C 264923

output:

1128085

result:

ok single line: '1128085'

Test #41:

score: 0
Accepted
time: 9ms
memory: 59228kb

input:

9
??D?CDB?A
4
A 97396
B 962490
C 454116
D 236760

output:

9070552

result:

ok single line: '9070552'

Test #42:

score: 0
Accepted
time: 7ms
memory: 59088kb

input:

3
?D?
4
A 500155
B 811939
C 888931
D 587952

output:

3527712

result:

ok single line: '3527712'

Test #43:

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

input:

5
?AB?A
4
A 705726
B 387507
C 435398
D 224214

output:

3210411

result:

ok single line: '3210411'

Test #44:

score: 0
Accepted
time: 0ms
memory: 59232kb

input:

8
?CABBA?A
3
A 926717
B 887112
C 291376

output:

10287238

result:

ok single line: '10287238'

Test #45:

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

input:

4
???A
2
A 969312
B 936948

output:

11631744

result:

ok single line: '11631744'

Test #46:

score: 0
Accepted
time: 0ms
memory: 57172kb

input:

2
?A
3
A 568234
B 830302
C 159708

output:

2272936

result:

ok single line: '2272936'

Test #47:

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

input:

9
?C?D?B?B?
4
A 771297
B 901768
C 917543
D 151374

output:

10133922

result:

ok single line: '10133922'

Test #48:

score: 0
Accepted
time: 6ms
memory: 59212kb

input:

3
C??
4
A 688975
B 241727
C 818932
D 91536

output:

4913592

result:

ok single line: '4913592'

Test #49:

score: 0
Accepted
time: 9ms
memory: 59232kb

input:

5
AD?CD
4
A 543418
B 284525
C 850331
D 740165

output:

3724410

result:

ok single line: '3724410'

Test #50:

score: 0
Accepted
time: 4ms
memory: 59252kb

input:

8
A?B????A
3
A 954458
B 684238
C 796348

output:

18008280

result:

ok single line: '18008280'

Test #51:

score: 0
Accepted
time: 0ms
memory: 59224kb

input:

4
?B??
2
A 581901
B 215410

output:

3189244

result:

ok single line: '3189244'

Test #52:

score: 0
Accepted
time: 8ms
memory: 59232kb

input:

2
?B
3
A 959740
B 72429
C 623651

output:

1032169

result:

ok single line: '1032169'

Test #53:

score: 0
Accepted
time: 4ms
memory: 59212kb

input:

9
A?DDABAAC
4
A 397407
B 640932
C 592671
D 217463

output:

4847785

result:

ok single line: '4847785'

Test #54:

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

input:

3
??D
4
A 376063
B 568599
C 914893
D 321187

output:

2150973

result:

ok single line: '2150973'

Test #55:

score: 0
Accepted
time: 4ms
memory: 59152kb

input:

5
??ADC
4
A 688276
B 410703
C 809171
D 184066

output:

3299855

result:

ok single line: '3299855'

Test #56:

score: 0
Accepted
time: 4ms
memory: 59232kb

input:

8
A?CCBAA?
3
A 21623
B 247434
C 127506

output:

1197267

result:

ok single line: '1197267'

Test #57:

score: 0
Accepted
time: 4ms
memory: 59164kb

input:

4
B?A?
2
A 806419
B 585499

output:

4617594

result:

ok single line: '4617594'

Test #58:

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

input:

2
?C
3
A 919848
B 927494
C 487705

output:

1950820

result:

ok single line: '1950820'

Test #59:

score: 0
Accepted
time: 6ms
memory: 59268kb

input:

9
?DB?AADC?
4
A 423449
B 362240
C 881654
D 747001

output:

8201453

result:

ok single line: '8201453'

Test #60:

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

input:

3
BCB
4
A 382899
B 573494
C 708454
D 843677

output:

1855442

result:

ok single line: '1855442'

Test #61:

score: 0
Accepted
time: 11ms
memory: 59232kb

input:

5
?B???
4
A 44235
B 882584
C 449481
D 869802

output:

8825840

result:

ok single line: '8825840'

Test #62:

score: 0
Accepted
time: 0ms
memory: 59096kb

input:

8
??C??C??
3
A 837095
B 557123
C 969486

output:

31023552

result:

ok single line: '31023552'

Test #63:

score: 0
Accepted
time: 6ms
memory: 59232kb

input:

4
?B?B
2
A 3222
B 125590

output:

1507080

result:

ok single line: '1507080'

Test #64:

score: 0
Accepted
time: 8ms
memory: 59168kb

input:

2
A?
3
A 958375
B 119559
C 696704

output:

3833500

result:

ok single line: '3833500'

Test #65:

score: 0
Accepted
time: 8ms
memory: 59172kb

input:

9
??CAD?C??
4
A 681566
B 192620
C 761507
D 860988

output:

12039031

result:

ok single line: '12039031'

Test #66:

score: 0
Accepted
time: 8ms
memory: 59156kb

input:

3
B??
4
A 712112
B 202696
C 645344
D 88110

output:

1626920

result:

ok single line: '1626920'

Test #67:

score: 0
Accepted
time: 0ms
memory: 59096kb

input:

5
BC?AC
4
A 344591
B 900818
C 44285
D 867644

output:

2234797

result:

ok single line: '2234797'

Test #68:

score: 0
Accepted
time: 9ms
memory: 59156kb

input:

8
A?A?B?A?
3
A 741498
B 816894
C 209420

output:

14327112

result:

ok single line: '14327112'

Test #69:

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

input:

4
?BAB
2
A 96615
B 49978

output:

586372

result:

ok single line: '586372'

Test #70:

score: 0
Accepted
time: 4ms
memory: 59216kb

input:

2
B?
3
A 87654
B 674557
C 679799

output:

2698228

result:

ok single line: '2698228'

Test #71:

score: 0
Accepted
time: 0ms
memory: 59216kb

input:

9
ADDDC?C?A
4
A 810389
B 122952
C 845789
D 631182

output:

6897480

result:

ok single line: '6897480'

Test #72:

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

input:

3
?DC
4
A 452330
B 336396
C 38700
D 580305

output:

1199310

result:

ok single line: '1199310'

Test #73:

score: 0
Accepted
time: 0ms
memory: 59156kb

input:

5
D?CB?
4
A 453200
B 189645
C 321087
D 191070

output:

1608202

result:

ok single line: '1608202'

Test #74:

score: 0
Accepted
time: 38ms
memory: 93184kb

input:

65536
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????B??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

408817261167

result:

ok single line: '408817261167'

Test #75:

score: 0
Accepted
time: 36ms
memory: 89908kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????Y???????????????O???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

414163904759

result:

ok single line: '414163904759'

Test #76:

score: 0
Accepted
time: 37ms
memory: 89692kb

input:

65536
????????????????????????????????????????????????????????S?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????S?????R?????????????????????????????????????????...

output:

429918490805

result:

ok single line: '429918490805'

Test #77:

score: 0
Accepted
time: 35ms
memory: 90476kb

input:

65536
?????????????????G???????????????????????????????????????????????????????????????????????????????????????????????????V????????????????????????????????????????????????????????????????????Q????????????????????????????????????????????????H???????????????????????????????????U??????????????????????...

output:

410992098572

result:

ok single line: '410992098572'

Test #78:

score: 0
Accepted
time: 32ms
memory: 93196kb

input:

65536
?????????????????????????????????????????????????????????????????????????????????????????????????????T??????????????????????????????????????????????????????????????????????????J?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

430103766471

result:

ok single line: '430103766471'

Test #79:

score: 0
Accepted
time: 40ms
memory: 89744kb

input:

65536
?????Y??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Z?????????????????????????????????????????????...

output:

410180088397

result:

ok single line: '410180088397'

Test #80:

score: 0
Accepted
time: 38ms
memory: 94916kb

input:

65536
???????????????????????????????????????????????????????????????????????????????????????????I??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

419329955796

result:

ok single line: '419329955796'

Test #81:

score: 0
Accepted
time: 19ms
memory: 78788kb

input:

59049
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

250106507498

result:

ok single line: '250106507498'

Test #82:

score: 0
Accepted
time: 16ms
memory: 81988kb

input:

78125
?????????????????????????????????????????????????????????????????????????????????????????????R????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C???????????????????????????????????????????????...

output:

234819569595

result:

ok single line: '234819569595'

Test #83:

score: 0
Accepted
time: 4ms
memory: 61680kb

input:

16807
??????????????????????????????R??????????????????????????????N?????????????????????????????????????????????????????????????????????????????????????????????????I??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

43680180411

result:

ok single line: '43680180411'

Test #84:

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

input:

14641
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????K?????????????????????????????????????????????????????????????????????????????????????????????????O????????????...

output:

33454441455

result:

ok single line: '33454441455'

Test #85:

score: 0
Accepted
time: 4ms
memory: 64064kb

input:

28561
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????W???????????????????????????????????????????????????W?????????????????V??????????????????????????????????????????????????J????...

output:

49883458672

result:

ok single line: '49883458672'

Test #86:

score: 0
Accepted
time: 11ms
memory: 80492kb

input:

83521
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

158411668516

result:

ok single line: '158411668516'

Test #87:

score: 0
Accepted
time: 4ms
memory: 57444kb

input:

6859
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????X??????????????????????????????????????????????????????????????????????????????????????????????????????B???C???????????????...

output:

12588914547

result:

ok single line: '12588914547'

Test #88:

score: 0
Accepted
time: 11ms
memory: 59772kb

input:

12167
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????W???I???????????????????????????????????Y???????????????????????????????????M???????????...

output:

22658354738

result:

ok single line: '22658354738'

Test #89:

score: 0
Accepted
time: 8ms
memory: 63648kb

input:

24389
???????????????????????????J??????????????R???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

44393468855

result:

ok single line: '44393468855'

Test #90:

score: 0
Accepted
time: 10ms
memory: 63820kb

input:

29791
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????W???????????????????????????????????????????????K??????H????????????...

output:

53946016293

result:

ok single line: '53946016293'

Test #91:

score: 0
Accepted
time: 7ms
memory: 70644kb

input:

50653
??????????????????????????????????????????????????O??????????????????????????????????????????????????????????A????????????????????????????????????????????????????????I??????????????????????????????????????????????????E????????????????????????????????????????????????????????????????????????????...

output:

88986693179

result:

ok single line: '88986693179'

Test #92:

score: 0
Accepted
time: 11ms
memory: 75208kb

input:

68921
?????????????????????????????????????????????????????????????????????Y??????????????????????????????????????????????????????????????????????????????????????????S?????????????????????????????????????????????????????????????V???????????????????????????????????????????????????????????????????????...

output:

119267337059

result:

ok single line: '119267337059'

Test #93:

score: 0
Accepted
time: 16ms
memory: 77700kb

input:

79507
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????R?????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

139154055708

result:

ok single line: '139154055708'

Test #94:

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

input:

2209
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????O??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????I??????????????????????????????...

output:

3568055209

result:

ok single line: '3568055209'

Test #95:

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

input:

2809
??????????????????????????B????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????B???????????????????????????????????????????????????????????????????????...

output:

4707286279

result:

ok single line: '4707286279'

Test #96:

score: 0
Accepted
time: 4ms
memory: 55208kb

input:

3481
????????????????????Q???????????????????????????????????????????????????????????????T??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

6148416013

result:

ok single line: '6148416013'

Test #97:

score: 0
Accepted
time: 7ms
memory: 57196kb

input:

3721
???????????????????????R?????????????????????????????????????????????????????????????????????????????????????????????????I?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

5789445734

result:

ok single line: '5789445734'

Test #98:

score: 0
Accepted
time: 4ms
memory: 59360kb

input:

4489
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

7200197160

result:

ok single line: '7200197160'

Test #99:

score: 0
Accepted
time: 16ms
memory: 83664kb

input:

99013
???????????????????????????????????????????????????????????????????????O??????????????????????????????????????????????????????????????????????????ML????????????????????????????????????????????????????????????????????????????????????????????I????????????????????????A????????????????????????????...

output:

92673769170

result:

ok single line: '92673769170'

Test #100:

score: 0
Accepted
time: 15ms
memory: 87944kb

input:

99017
??F?????????????????L????????????????????????????????????????????????????????????????????????????????????????????????L?????????????????????????????????????????????????????????????????X??????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

97941003883

result:

ok single line: '97941003883'

Test #101:

score: 0
Accepted
time: 19ms
memory: 81724kb

input:

99023
??????????????????????????????????????????????????????????????????????????????????????????????Y?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????P?????????????????????????????????????????????????????????...

output:

95654275894

result:

ok single line: '95654275894'

Test #102:

score: 0
Accepted
time: 26ms
memory: 83888kb

input:

99041
????????????????????????????????????????????????????????????????????????Y?????????????????????????????????????????????????????????????????????????????????????????????????????????I???????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

93073254863

result:

ok single line: '93073254863'

Test #103:

score: 0
Accepted
time: 23ms
memory: 81568kb

input:

99053
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????T???????????????????????????????????????????????????????????????????????B???????????????????????????????????????????????????????????????????????????????????????????...

output:

98418074426

result:

ok single line: '98418074426'

Test #104:

score: 0
Accepted
time: 19ms
memory: 87976kb

input:

99079
?????????????????U??????????H??????????????????????????????????????????????????????????S??????????????Y???????????????????????????????????????????????????????????????????Q???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

97288401629

result:

ok single line: '97288401629'

Test #105:

score: 0
Accepted
time: 19ms
memory: 83732kb

input:

99083
??????????????????????????????????????????????????????????????????????????????S????????????????????????????????K????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????X?????????????????????...

output:

92825739735

result:

ok single line: '92825739735'

Test #106:

score: 0
Accepted
time: 9ms
memory: 59284kb

input:

4
A??A
2
A 10
B 25

output:

120

result:

ok single line: '120'

Test #107:

score: 0
Accepted
time: 12ms
memory: 87772kb

input:

99089
???????????????L??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????H??????????????????????????????????????????????????G????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

97080921520

result:

ok single line: '97080921520'

Test #108:

score: 0
Accepted
time: 8ms
memory: 82100kb

input:

97969
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

125357288942

result:

ok single line: '125357288942'

Test #109:

score: 0
Accepted
time: 4ms
memory: 61744kb

input:

14641
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

45331258051

result:

ok single line: '45331258051'

Test #110:

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

input:

4489
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

8035067453

result:

ok single line: '8035067453'

Test #111:

score: 0
Accepted
time: 15ms
memory: 72452kb

input:

57121
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????J???????????????????????????????????????????????...

output:

100019940495

result:

ok single line: '100019940495'

Test #112:

score: 0
Accepted
time: 4ms
memory: 61676kb

input:

16129
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

29154710316

result:

ok single line: '29154710316'

Test #113:

score: 0
Accepted
time: 8ms
memory: 81628kb

input:

85849
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

153403516302

result:

ok single line: '153403516302'

Test #114:

score: 0
Accepted
time: 7ms
memory: 79556kb

input:

80089
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

140499350038

result:

ok single line: '140499350038'

Test #115:

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

input:

16129
??????????????????????????????????????????????????????????????????????????????H???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

28647844670

result:

ok single line: '28647844670'

Test #116:

score: 0
Accepted
time: 13ms
memory: 70640kb

input:

50653
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

109172167226

result:

ok single line: '109172167226'

Test #117:

score: 0
Accepted
time: 15ms
memory: 66216kb

input:

39601
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

74071898580

result:

ok single line: '74071898580'

Test #118:

score: 0
Accepted
time: 40ms
memory: 90344kb

input:

65536
HFJJIFACKVXUWPXNVQGABQJELLMRRDSSNUXDQYQKQPOKZLYKCAWSOABKSXPQNCPFTDXWMXYYLTMFZXYUDRAHYGNHKRESRPISMMQLALFZWPENZHQTNBMTBNBSCDTKLEGCJCPPFOQJOULBBEZALLMJEDHBBUAYNAEMQJBVKUFUGLOXGDYWIHZVVVWNUAKHVQBQSKRTHGKWTWTSTCQJTVZSEHKMGXMLPTRTYEUSRESYDJTEDXVPXMMKQWOROOCCAENNSPYTIYOODPEZCXBPTHYITNYLCLJWSKWSWREYGW...

output:

36920925631

result:

ok single line: '36920925631'

Test #119:

score: 0
Accepted
time: 33ms
memory: 90516kb

input:

65536
CNWFZCXRVSESVNZAOFOEPFKXMAXQGPTFKQRMZSUUUWUIKVNKQWQRGVHBPVFDSNIQKLGKBXZIORFCYQPQCGTRTKNYNACQDKPJZKELLCGEAABJIOSPRHBPUCLJNXBUUFVXCJZJBFCXOTCWCNRHRETSQIZLPGOCTZSLNGEVQPHFWKEZZEERVOQWNZKPRHRZFLFRLNSLPCZYVGGLADBZJMQNLWOGMHTYFOBDWPFIVYWRREZNDJDLVZCDDHSQEWKMQYBSSEXDEPKDXGDTLVYFBTDRBRHUCOHRKXKARBZXQR...

output:

33418955316

result:

ok single line: '33418955316'

Test #120:

score: 0
Accepted
time: 39ms
memory: 94816kb

input:

65536
HVAYEAYQYSEDEPRAFPBJPAQBSWOCUWMZSKHJUAZVBBZMUCFBTKEPXMWQQNGGHUEJAIKLXQXKBKFHNVFOAZFEVHOCRDFLDDMROWIGFWUVVCIJSWTBMUVFUMOTPAUPLSEVZIBNXMLRBRMJRSGFZOALNCDHJMZHIZYYEBEKIMXYNYYTBBSRCNXQMOVLCZASSFCTJLXQGNHUBJRDCQSNJFIALMNPOHQDVIKRAJYELDZWLUBZWDUOSXFNLWZRMESWABNAQLMUTKNVGTCGOFJMYQVBEEAABYUXMINGADMEGB...

output:

35121616697

result:

ok single line: '35121616697'

Test #121:

score: 0
Accepted
time: 35ms
memory: 93100kb

input:

65536
ASWTUGLNXJRJNLGMYVSRABUQLCNSMUIMPCBCVWCMNKBJUEWMYQODLXPMBQJQODNSDWNYXDKFFIWJEEMOGMIPFSVUZGNGMDGOUPPQHMODAPXSDHBGQLEOULQLPIOGKLJSQIZSPAPOQNERJEHKTWWSEUMLDHVPEFTNKXUWXQTKDFQIFOSBMKTDZLGHFZRELPGNPDLRUKYGDPCKNYLKXBZHFLZUQTBMXKKKKNODOWNYZGCGHSXNZWNEGHVBVCHHGFNYLZZCQEGPUYCSPDSQIUHUGNUYSDSXQHCJTDNYUQ...

output:

36201629746

result:

ok single line: '36201629746'

Test #122:

score: 0
Accepted
time: 32ms
memory: 89820kb

input:

65536
RSYVIYQFLQGFMCWAIQVEURVDPZBKCAYNLABQVLBLZKKMOKMTPSFWHQZHHARJEDBOUJQSYTPIHTYEDMDNZHEBNIJLWYOVNHHVJMJTOFMIHUSZGKCWUFSZVSFTURKLKDBAQQJTOTKRNCJNDHCFUDITLAWKOMEZOLPUMFOONCECTBZFMIJZSAEOHASMLUEKHZYKLSNZOPHWVOSREPNEQHSYWMGJXKOPBQYOZIRWEOSCETIXJCNZFQIAFYFJALCFSQLOLMDRPZOGYMXFKIYBCAKXEEVEYMHNURQPNWOLDW...

output:

36540454947

result:

ok single line: '36540454947'

Test #123:

score: 0
Accepted
time: 28ms
memory: 94640kb

input:

65536
CRJBUDTNBCXSOVWSEUSOZNWMRNQWUNQXYHTCZSHZBMAVZTWHGJEPWWBYIHWTVSSUXVILQWHXMQEZSMNKFBQWRRKGLSTHXZROITEDQVVWERONPOQCTIKTIUBNAAZXQCJQBIKSFFKSPNMOOQZYBHNJKARGEXYLZDJLSGLZBRFGAUTMQFNICFFABNQWQEXSGCLAMYMHUYCBABLEKHKJUTWQYDOGLRUJENRKYBKUWBGCNPZBTQKGLHYBSYINDFAMDVBIDZLEWPTCLWVHZASXUHWWJOXSJZYGIIWQBHEEVM...

output:

30273753231

result:

ok single line: '30273753231'

Test #124:

score: 0
Accepted
time: 28ms
memory: 90460kb

input:

65536
PLYDJRAQWTXQDUBVPAFWMXUVAQFVENBGTXLKSTGCWEWWMZMTBODQINGHEXAHBYUDFZDFPTFDKCUBXFHXPFAIFYEFPUHBNJVPUQSPUXEHQEWDWUGUXBZYVEZTFXFBRCSTATHTWZWEFZQZYZLGQWQAXKJQCSESDGYGORAGPBNGWUJZTIAXSVZZWLMIUMAHBSZKNALTKORUFCBUIBVICGYTFKMRPFXWKLOQNOHUGHYZCASGCYAUXJACPEXPQSAIJKVMFMTPUHMRCHZYXQFUGKCHGQSUEDFFCIALXCTUOI...

output:

38589801757

result:

ok single line: '38589801757'

Test #125:

score: 0
Accepted
time: 27ms
memory: 93184kb

input:

65536
MIRUYSTHTILUUDQNEZOYHJSBZSANSEBZLWSNFGNRARBCGXAAXXGOEYMMJAZMUFTQZYXLVUNFSWUWIBNRHGBYEYWHEIYQOHWFLZKLGNEOLZRCHHNZHUQVXGXXGKUSSHUSQERKNKCPZUNHEFVIPMEDATVYULQSFTUMQFFDCZRCDAONMGLLHKMOULBZHJFYSDWNCRNYKTGNQCVNFRKMNNFANWJSLQVXYQIOMXBCYDFMXMAGDMAMJGQHAHRHFUFZGLZJZNIPIJAZRBUUJNUJHAZNTQQMUYXGUCJHSGXNDL...

output:

35559501063

result:

ok single line: '35559501063'

Test #126:

score: 0
Accepted
time: 38ms
memory: 95036kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

587396612096

result:

ok single line: '587396612096'

Test #127:

score: 0
Accepted
time: 41ms
memory: 92156kb

input:

65536
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????A??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

778365435904

result:

ok single line: '778365435904'

Test #128:

score: 0
Accepted
time: 39ms
memory: 91476kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

590010371328

result:

ok single line: '590010371328'

Test #129:

score: 0
Accepted
time: 35ms
memory: 92528kb

input:

65536
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????B????????????????????????????????????????...

output:

590875541724

result:

ok single line: '590875541724'

Test #130:

score: 0
Accepted
time: 37ms
memory: 90044kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

559333050720

result:

ok single line: '559333050720'

Test #131:

score: 0
Accepted
time: 44ms
memory: 90556kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

509113239978

result:

ok single line: '509113239978'

Test #132:

score: 0
Accepted
time: 35ms
memory: 95012kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

438046231002

result:

ok single line: '438046231002'

Test #133:

score: 0
Accepted
time: 31ms
memory: 89888kb

input:

65536
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????D??????????????????????????????????????????...

output:

613743427168

result:

ok single line: '613743427168'

Test #134:

score: 0
Accepted
time: 32ms
memory: 90384kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C???????????????????????????????????????????????????????????????????????????...

output:

460816762199

result:

ok single line: '460816762199'

Test #135:

score: 0
Accepted
time: 32ms
memory: 94700kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

503034878751

result:

ok single line: '503034878751'

Test #136:

score: 0
Accepted
time: 32ms
memory: 95152kb

input:

65536
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

775616921600

result:

ok single line: '775616921600'