結果

問題 No.3001 ヘビ文字列
ユーザー 👑 p-adicp-adic
提出日時 2024-12-29 14:27:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 870 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 238,400 KB
最終ジャッジ日時 2025-01-01 07:44:46
合計ジャッジ時間 117,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
65,976 KB
testcase_01 AC 46 ms
139,804 KB
testcase_02 AC 46 ms
66,472 KB
testcase_03 AC 46 ms
139,448 KB
testcase_04 AC 45 ms
65,124 KB
testcase_05 AC 66 ms
148,276 KB
testcase_06 AC 64 ms
74,336 KB
testcase_07 AC 63 ms
147,672 KB
testcase_08 AC 65 ms
74,764 KB
testcase_09 AC 65 ms
147,016 KB
testcase_10 AC 65 ms
74,528 KB
testcase_11 AC 64 ms
147,668 KB
testcase_12 AC 64 ms
74,880 KB
testcase_13 AC 64 ms
147,220 KB
testcase_14 AC 64 ms
74,996 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 248 ms
229,564 KB
testcase_26 AC 247 ms
156,708 KB
testcase_27 AC 249 ms
230,040 KB
testcase_28 AC 253 ms
156,840 KB
testcase_29 AC 245 ms
229,628 KB
testcase_30 AC 246 ms
157,108 KB
testcase_31 AC 243 ms
156,868 KB
testcase_32 AC 251 ms
156,728 KB
testcase_33 AC 253 ms
156,460 KB
testcase_34 AC 244 ms
156,736 KB
testcase_35 AC 394 ms
222,852 KB
testcase_36 AC 392 ms
150,196 KB
testcase_37 AC 402 ms
222,904 KB
testcase_38 AC 411 ms
150,096 KB
testcase_39 AC 387 ms
222,844 KB
testcase_40 AC 410 ms
150,068 KB
testcase_41 AC 380 ms
222,792 KB
testcase_42 AC 370 ms
150,596 KB
testcase_43 AC 378 ms
222,776 KB
testcase_44 AC 382 ms
150,320 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 471 ms
131,292 KB
testcase_66 AC 625 ms
153,008 KB
testcase_67 AC 743 ms
144,496 KB
testcase_68 AC 421 ms
140,020 KB
testcase_69 AC 339 ms
111,840 KB
testcase_70 AC 544 ms
151,292 KB
testcase_71 AC 419 ms
121,664 KB
testcase_72 AC 425 ms
130,552 KB
testcase_73 AC 406 ms
107,516 KB
testcase_74 AC 561 ms
133,588 KB
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 AC 44 ms
59,648 KB
testcase_86 AC 47 ms
139,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
S=input()
N=len(S)
L=1415
P=[]
C=[0]*L
for i in R(2,L):
	if C[i]<1:
		P+=[i];j=i*i
		while j<L:C[j],j=1,j+i
D=[1];E=[];e=n=N
for p in P:
	c=0
	while n%p<1:n//=p;c+=1
	r=len(D)
	for i in R(c):D+=[d*p for d in D[-r:]]
	if c:E+=[[p,c]];e=e//p*(p-1)
r=len(D)
if n>1:D+=[d*n for d in D[-r:]];r*=2;E+=[[n,1]];e=e//n*(n-1)
D.pop()
d_best = -1
opt = N + 1
for d in D:
	Nd = N // d
	opt_temp = 0
	for i in R(d):
		h = [0]*26
		temp = 0
		for j in R(Nd):
			c = ord(S[i+j*d]) - ord('A')
			h[c] += 1
			temp = max( temp , h[c] )
		opt_temp += Nd - temp
	if opt > opt_temp:
		opt = opt_temp
		d_best = d
Nd = N // d_best
T=['A']*N
for i in R(d_best):
	h = [0]*26
	for j in R(Nd):h[ord(S[i+j*d_best]) - ord('A')] += 1
	c_opt = -1
	temp = 0
	for c in R(26):
		if temp < h[c]:
			temp = h[c]
			c_opt = c
	for j in R(Nd):T[i+j*d_best] = chr(c_opt + ord('A'))
print("".join(T))
0