結果

問題 No.3001 ヘビ文字列
ユーザー titiatitia
提出日時 2025-01-02 00:10:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 276,452 KB
最終ジャッジ日時 2025-01-02 00:12:02
合計ジャッジ時間 87,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,456 KB
testcase_01 AC 35 ms
54,696 KB
testcase_02 AC 35 ms
54,156 KB
testcase_03 AC 36 ms
53,844 KB
testcase_04 AC 35 ms
54,276 KB
testcase_05 AC 54 ms
64,196 KB
testcase_06 AC 45 ms
63,092 KB
testcase_07 AC 46 ms
64,620 KB
testcase_08 AC 46 ms
65,076 KB
testcase_09 AC 46 ms
64,368 KB
testcase_10 AC 45 ms
63,616 KB
testcase_11 AC 58 ms
63,384 KB
testcase_12 AC 45 ms
63,940 KB
testcase_13 AC 46 ms
64,252 KB
testcase_14 AC 45 ms
64,448 KB
testcase_15 AC 816 ms
230,840 KB
testcase_16 AC 754 ms
230,612 KB
testcase_17 AC 829 ms
230,668 KB
testcase_18 AC 791 ms
230,736 KB
testcase_19 AC 778 ms
230,852 KB
testcase_20 AC 814 ms
230,368 KB
testcase_21 AC 793 ms
230,696 KB
testcase_22 AC 815 ms
230,404 KB
testcase_23 AC 773 ms
230,632 KB
testcase_24 AC 784 ms
230,436 KB
testcase_25 AC 218 ms
97,480 KB
testcase_26 AC 223 ms
97,476 KB
testcase_27 AC 230 ms
97,508 KB
testcase_28 AC 241 ms
97,536 KB
testcase_29 AC 239 ms
97,568 KB
testcase_30 AC 233 ms
97,532 KB
testcase_31 AC 234 ms
97,404 KB
testcase_32 AC 252 ms
97,404 KB
testcase_33 AC 212 ms
97,440 KB
testcase_34 AC 224 ms
97,344 KB
testcase_35 AC 336 ms
98,072 KB
testcase_36 AC 369 ms
98,244 KB
testcase_37 AC 353 ms
98,272 KB
testcase_38 AC 331 ms
98,112 KB
testcase_39 AC 358 ms
98,308 KB
testcase_40 AC 321 ms
98,308 KB
testcase_41 AC 365 ms
98,336 KB
testcase_42 AC 380 ms
98,164 KB
testcase_43 AC 319 ms
98,072 KB
testcase_44 AC 312 ms
98,120 KB
testcase_45 TLE -
testcase_46 AC 1,448 ms
275,592 KB
testcase_47 AC 1,469 ms
275,584 KB
testcase_48 AC 1,462 ms
275,788 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 1,471 ms
275,820 KB
testcase_52 AC 1,476 ms
275,712 KB
testcase_53 TLE -
testcase_54 AC 1,448 ms
275,784 KB
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 603 ms
144,000 KB
testcase_66 AC 996 ms
255,248 KB
testcase_67 AC 945 ms
172,348 KB
testcase_68 AC 558 ms
99,360 KB
testcase_69 AC 529 ms
106,164 KB
testcase_70 AC 695 ms
136,432 KB
testcase_71 AC 482 ms
108,388 KB
testcase_72 AC 500 ms
114,860 KB
testcase_73 AC 524 ms
140,040 KB
testcase_74 AC 653 ms
116,156 KB
testcase_75 AC 1,463 ms
275,768 KB
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 AC 1,480 ms
275,904 KB
testcase_80 AC 1,459 ms
276,164 KB
testcase_81 TLE -
testcase_82 TLE -
testcase_83 AC 1,499 ms
275,856 KB
testcase_84 TLE -
testcase_85 AC 34 ms
54,548 KB
testcase_86 AC 36 ms
54,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S=input()
LEN=len(S)
C=Counter(S)
ANS=LEN
ind=-1

for a in C:
    x=C[a]

    if ANS>LEN-x:
        ANS=LEN-x
        ind=[a]

x=LEN

for t in range(2,LEN):
    if x%t==0:
        while x%t==0:
            x//=t
        dis=LEN//t

        score=0
        L=[]

        for i in range(dis):
            C=Counter()
            for j in range(t):
                C[S[j*dis+i]]+=1
            MAX=0
            indm=""

            for c in C:
                if MAX<C[c]:
                    MAX=C[c]
                    indm=c
            score+=t-MAX
            L.append(indm)

        if score<ANS:
            ANS=score
            ind=L
                
LANS=ind*(LEN//len(ind))

print("".join(LANS))
    
        
0