結果

問題 No.852 連続部分文字列
ユーザー vwxyzvwxyz
提出日時 2024-04-08 05:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,421 ms / 3,153 ms
コード長 295 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 85,232 KB
最終ジャッジ日時 2024-10-01 04:51:44
合計ジャッジ時間 18,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,432 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 44 ms
59,520 KB
testcase_06 AC 42 ms
58,240 KB
testcase_07 AC 42 ms
59,008 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 41 ms
57,472 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 41 ms
58,496 KB
testcase_13 AC 78 ms
75,904 KB
testcase_14 AC 67 ms
75,776 KB
testcase_15 AC 101 ms
75,904 KB
testcase_16 AC 81 ms
75,904 KB
testcase_17 AC 93 ms
76,032 KB
testcase_18 AC 93 ms
76,416 KB
testcase_19 AC 50 ms
67,200 KB
testcase_20 AC 72 ms
75,904 KB
testcase_21 AC 97 ms
76,288 KB
testcase_22 AC 65 ms
76,156 KB
testcase_23 AC 83 ms
76,104 KB
testcase_24 AC 70 ms
75,904 KB
testcase_25 AC 80 ms
76,032 KB
testcase_26 AC 94 ms
76,032 KB
testcase_27 AC 78 ms
75,904 KB
testcase_28 AC 85 ms
75,776 KB
testcase_29 AC 91 ms
76,268 KB
testcase_30 AC 59 ms
75,776 KB
testcase_31 AC 92 ms
76,288 KB
testcase_32 AC 98 ms
76,232 KB
testcase_33 AC 1,408 ms
84,600 KB
testcase_34 AC 1,303 ms
84,724 KB
testcase_35 AC 1,255 ms
84,716 KB
testcase_36 AC 1,421 ms
84,584 KB
testcase_37 AC 1,389 ms
84,600 KB
testcase_38 AC 1,383 ms
84,964 KB
testcase_39 AC 1,260 ms
84,848 KB
testcase_40 AC 1,346 ms
84,724 KB
testcase_41 AC 1,256 ms
84,596 KB
testcase_42 AC 785 ms
85,232 KB
testcase_43 AC 759 ms
84,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=[ord(s)-97 for s in input()]
prev=[-1]*26
N=len(S)
ans=0
for i in range(N):
    prev[S[i]]=i
    bound=[prev[s]+1 for s in range(26) if prev[s]!=-1]+[0]
    bound.sort(reverse=True)
    cnt=0
    for r,l in zip(bound,bound[1:]):
        cnt+=1
        ans+=cnt*(r-l)
ans/=N*(N+1)//2
print(ans)
0