結果

問題 No.852 連続部分文字列
ユーザー titiatitia
提出日時 2019-07-27 00:16:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 3,153 ms
コード長 348 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 280,296 KB
最終ジャッジ日時 2024-07-02 10:12:36
合計ジャッジ時間 11,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 46 ms
60,416 KB
testcase_06 AC 47 ms
60,032 KB
testcase_07 AC 44 ms
59,888 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 44 ms
59,648 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 45 ms
59,904 KB
testcase_13 AC 57 ms
65,792 KB
testcase_14 AC 52 ms
63,232 KB
testcase_15 AC 68 ms
68,224 KB
testcase_16 AC 58 ms
65,280 KB
testcase_17 AC 65 ms
67,328 KB
testcase_18 AC 70 ms
68,864 KB
testcase_19 AC 47 ms
61,056 KB
testcase_20 AC 56 ms
64,512 KB
testcase_21 AC 72 ms
68,608 KB
testcase_22 AC 53 ms
63,872 KB
testcase_23 AC 61 ms
66,560 KB
testcase_24 AC 53 ms
64,000 KB
testcase_25 AC 62 ms
66,688 KB
testcase_26 AC 67 ms
68,224 KB
testcase_27 AC 59 ms
65,664 KB
testcase_28 AC 65 ms
67,456 KB
testcase_29 AC 69 ms
68,608 KB
testcase_30 AC 50 ms
62,720 KB
testcase_31 AC 72 ms
69,120 KB
testcase_32 AC 71 ms
69,248 KB
testcase_33 AC 736 ms
280,208 KB
testcase_34 AC 726 ms
279,968 KB
testcase_35 AC 727 ms
280,236 KB
testcase_36 AC 737 ms
279,868 KB
testcase_37 AC 724 ms
279,712 KB
testcase_38 AC 795 ms
280,296 KB
testcase_39 AC 726 ms
280,292 KB
testcase_40 AC 726 ms
279,996 KB
testcase_41 AC 734 ms
280,084 KB
testcase_42 AC 720 ms
280,272 KB
testcase_43 AC 720 ms
280,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
L=len(S)

M=[[1<<40]*(L+1) for i in range(26)]

for i in range(L-1,-1,-1):
    for j in range(26):
        if ord(S[i])-97==j:
            M[j][i]=i
        else:
            M[j][i]=M[j][i+1]

ANS=0

for j in range(26):
    for i in range(L):
        if M[j][i]==1<<40:
            continue
        ANS+=L-M[j][i]

print(ANS/(L*(L+1)/2))
0