結果

問題 No.852 連続部分文字列
ユーザー H3PO4H3PO4
提出日時 2021-02-26 09:12:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 979 ms / 3,153 ms
コード長 282 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 90,068 KB
最終ジャッジ日時 2024-10-01 23:03:22
合計ジャッジ時間 12,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 37 ms
11,904 KB
testcase_14 AC 29 ms
11,136 KB
testcase_15 AC 44 ms
12,672 KB
testcase_16 AC 36 ms
11,776 KB
testcase_17 AC 42 ms
12,288 KB
testcase_18 AC 46 ms
12,800 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 34 ms
11,520 KB
testcase_21 AC 49 ms
13,056 KB
testcase_22 AC 32 ms
11,136 KB
testcase_23 AC 41 ms
12,032 KB
testcase_24 AC 32 ms
11,392 KB
testcase_25 AC 38 ms
12,160 KB
testcase_26 AC 55 ms
12,800 KB
testcase_27 AC 37 ms
11,776 KB
testcase_28 AC 41 ms
12,288 KB
testcase_29 AC 45 ms
13,056 KB
testcase_30 AC 30 ms
11,008 KB
testcase_31 AC 47 ms
12,928 KB
testcase_32 AC 49 ms
13,056 KB
testcase_33 AC 979 ms
89,964 KB
testcase_34 AC 869 ms
90,000 KB
testcase_35 AC 830 ms
90,020 KB
testcase_36 AC 851 ms
89,856 KB
testcase_37 AC 819 ms
89,880 KB
testcase_38 AC 857 ms
89,856 KB
testcase_39 AC 838 ms
90,020 KB
testcase_40 AC 832 ms
89,908 KB
testcase_41 AC 825 ms
89,916 KB
testcase_42 AC 811 ms
90,068 KB
testcase_43 AC 859 ms
90,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

en2asc = lambda s: ord(s) - 97

S = input()
L = len(S)
cur = [-1] * 26
left = [-1] * L
for i, s in enumerate(S):
    left[i] = cur[en2asc(s)]
    cur[en2asc(s)] = i

dp = [1] * L
for i in range(1, L):
    dp[i] = dp[i - 1] + i - left[i]
ans = sum(dp) * 2 / ((L + 1) * L)
print(ans)
0