結果

問題 No.852 連続部分文字列
ユーザー titiatitia
提出日時 2019-07-27 00:04:21
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 374 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 405,880 KB
最終ジャッジ日時 2024-07-02 10:11:45
合計ジャッジ時間 26,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 55 ms
62,208 KB
testcase_06 AC 52 ms
60,928 KB
testcase_07 AC 51 ms
61,056 KB
testcase_08 AC 43 ms
52,736 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 52 ms
60,544 KB
testcase_11 AC 43 ms
52,480 KB
testcase_12 AC 54 ms
61,184 KB
testcase_13 AC 102 ms
79,360 KB
testcase_14 AC 86 ms
77,568 KB
testcase_15 AC 127 ms
87,040 KB
testcase_16 AC 104 ms
79,360 KB
testcase_17 AC 116 ms
85,504 KB
testcase_18 AC 130 ms
87,808 KB
testcase_19 AC 63 ms
66,560 KB
testcase_20 AC 98 ms
78,720 KB
testcase_21 AC 130 ms
88,320 KB
testcase_22 AC 88 ms
77,824 KB
testcase_23 AC 111 ms
84,608 KB
testcase_24 AC 93 ms
78,336 KB
testcase_25 AC 110 ms
83,840 KB
testcase_26 AC 129 ms
87,808 KB
testcase_27 AC 106 ms
82,816 KB
testcase_28 AC 121 ms
85,504 KB
testcase_29 AC 132 ms
88,192 KB
testcase_30 AC 81 ms
73,472 KB
testcase_31 AC 135 ms
88,704 KB
testcase_32 AC 139 ms
89,600 KB
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
L=len(S)

M=[[float("inf")]*(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):
        k=M[j][i]-i
        if k==float("inf"):
            continue
        ANS+=(L-i)-k

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