結果

問題 No.852 連続部分文字列
ユーザー rlangevinrlangevin
提出日時 2023-03-12 13:07:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 3,153 ms
コード長 390 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 172,780 KB
最終ジャッジ日時 2024-09-18 07:02:22
合計ジャッジ時間 10,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 33 ms
52,608 KB
testcase_13 AC 67 ms
76,160 KB
testcase_14 AC 64 ms
76,288 KB
testcase_15 AC 72 ms
77,288 KB
testcase_16 AC 67 ms
76,160 KB
testcase_17 AC 73 ms
76,928 KB
testcase_18 AC 74 ms
77,056 KB
testcase_19 AC 54 ms
67,840 KB
testcase_20 AC 68 ms
76,032 KB
testcase_21 AC 74 ms
77,056 KB
testcase_22 AC 65 ms
76,160 KB
testcase_23 AC 74 ms
76,800 KB
testcase_24 AC 68 ms
76,032 KB
testcase_25 AC 72 ms
77,312 KB
testcase_26 AC 75 ms
76,928 KB
testcase_27 AC 68 ms
76,032 KB
testcase_28 AC 71 ms
77,056 KB
testcase_29 AC 83 ms
77,188 KB
testcase_30 AC 69 ms
75,776 KB
testcase_31 AC 79 ms
77,604 KB
testcase_32 AC 78 ms
77,056 KB
testcase_33 AC 610 ms
171,800 KB
testcase_34 AC 598 ms
171,884 KB
testcase_35 AC 611 ms
170,900 KB
testcase_36 AC 612 ms
171,908 KB
testcase_37 AC 597 ms
171,500 KB
testcase_38 AC 610 ms
171,752 KB
testcase_39 AC 628 ms
172,460 KB
testcase_40 AC 606 ms
172,256 KB
testcase_41 AC 612 ms
171,984 KB
testcase_42 AC 521 ms
172,780 KB
testcase_43 AC 651 ms
171,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

S = list(input())
N = len(S)
D = [[0, N+1] for i in range(26)]
for i in range(N):
    D[ord(S[i]) - ord("a")].append(i + 1)

for i in range(26):
    D[i].sort()    

ans = 0
for i in range(N):
    n = ord(S[i]) - ord("a")
    right = bisect_right(D[n], i+1)
    left = bisect_left(D[n], i+1)-1
    ans += (N+1 - i-1)*(i+1 - D[n][left])
    
print(ans/(N * (N + 1)//2))
0