結果

問題 No.852 連続部分文字列
ユーザー titiatitia
提出日時 2019-07-27 00:11:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 234,652 KB
最終ジャッジ日時 2024-07-02 10:12:07
合計ジャッジ時間 16,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 456 ms
14,464 KB
testcase_14 AC 221 ms
12,288 KB
testcase_15 AC 738 ms
17,152 KB
testcase_16 AC 453 ms
14,720 KB
testcase_17 AC 622 ms
16,000 KB
testcase_18 AC 788 ms
17,536 KB
testcase_19 AC 80 ms
11,008 KB
testcase_20 AC 371 ms
13,568 KB
testcase_21 AC 822 ms
17,792 KB
testcase_22 AC 274 ms
12,672 KB
testcase_23 AC 569 ms
15,360 KB
testcase_24 AC 325 ms
13,184 KB
testcase_25 AC 518 ms
15,232 KB
testcase_26 AC 764 ms
17,536 KB
testcase_27 AC 469 ms
14,720 KB
testcase_28 AC 637 ms
16,256 KB
testcase_29 AC 808 ms
17,920 KB
testcase_30 AC 169 ms
11,904 KB
testcase_31 AC 855 ms
18,048 KB
testcase_32 AC 870 ms
18,304 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

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