結果

問題 No.852 連続部分文字列
ユーザー flippergoflippergo
提出日時 2024-10-12 09:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 3,153 ms
コード長 394 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 120,036 KB
最終ジャッジ日時 2024-10-12 09:35:02
合計ジャッジ時間 10,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,088 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 38 ms
53,200 KB
testcase_04 AC 37 ms
53,584 KB
testcase_05 AC 42 ms
52,648 KB
testcase_06 AC 37 ms
53,820 KB
testcase_07 AC 39 ms
52,136 KB
testcase_08 AC 38 ms
52,544 KB
testcase_09 AC 38 ms
53,180 KB
testcase_10 AC 38 ms
53,124 KB
testcase_11 AC 38 ms
52,696 KB
testcase_12 AC 38 ms
52,824 KB
testcase_13 AC 69 ms
76,072 KB
testcase_14 AC 61 ms
72,480 KB
testcase_15 AC 73 ms
76,164 KB
testcase_16 AC 69 ms
75,980 KB
testcase_17 AC 69 ms
76,540 KB
testcase_18 AC 71 ms
76,232 KB
testcase_19 AC 58 ms
67,332 KB
testcase_20 AC 65 ms
75,956 KB
testcase_21 AC 74 ms
76,920 KB
testcase_22 AC 66 ms
75,844 KB
testcase_23 AC 71 ms
76,288 KB
testcase_24 AC 68 ms
75,900 KB
testcase_25 AC 71 ms
75,964 KB
testcase_26 AC 73 ms
76,104 KB
testcase_27 AC 69 ms
76,096 KB
testcase_28 AC 69 ms
75,988 KB
testcase_29 AC 75 ms
76,320 KB
testcase_30 AC 60 ms
70,732 KB
testcase_31 AC 72 ms
76,536 KB
testcase_32 AC 72 ms
76,336 KB
testcase_33 AC 525 ms
117,132 KB
testcase_34 AC 506 ms
116,908 KB
testcase_35 AC 501 ms
116,724 KB
testcase_36 AC 542 ms
117,488 KB
testcase_37 AC 512 ms
118,084 KB
testcase_38 AC 514 ms
117,764 KB
testcase_39 AC 557 ms
117,420 KB
testcase_40 AC 495 ms
116,836 KB
testcase_41 AC 539 ms
117,476 KB
testcase_42 AC 469 ms
120,036 KB
testcase_43 AC 502 ms
114,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
S = input().strip()
N = len(S)
S = "0"+S
D = {}
for i in range(1,N+1):
    if S[i] not in D:
        D[S[i]] = [0]
    D[S[i]].append(i)
dp = [0]*(N+1)
dp[1] = 1
if N>=2:
    if S[1]==S[2]:
        dp[2] = 3
    else:
        dp[2] = 4
for i in range(3,N+1):
    ind = bisect_left(D[S[i]],i)
    dp[i] = 2*dp[i-1]-dp[i-2]+i-D[S[i]][ind-1]
print(dp[N]*2/(N*(N+1)))
0