結果

問題 No.852 連続部分文字列
ユーザー roarisroaris
提出日時 2019-07-27 01:51:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,160 KB
最終ジャッジ日時 2024-07-02 10:25:36
合計ジャッジ時間 12,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 28 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 39 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 47 ms
12,928 KB
testcase_16 AC 38 ms
12,032 KB
testcase_17 AC 43 ms
12,672 KB
testcase_18 AC 48 ms
13,056 KB
testcase_19 WA -
testcase_20 AC 38 ms
11,648 KB
testcase_21 AC 53 ms
13,184 KB
testcase_22 AC 34 ms
11,520 KB
testcase_23 AC 43 ms
12,416 KB
testcase_24 AC 36 ms
11,520 KB
testcase_25 AC 41 ms
12,288 KB
testcase_26 AC 50 ms
13,056 KB
testcase_27 AC 40 ms
12,160 KB
testcase_28 AC 46 ms
12,544 KB
testcase_29 AC 53 ms
13,312 KB
testcase_30 WA -
testcase_31 AC 54 ms
13,312 KB
testcase_32 AC 55 ms
13,440 KB
testcase_33 AC 862 ms
92,756 KB
testcase_34 AC 901 ms
92,508 KB
testcase_35 AC 913 ms
92,772 KB
testcase_36 AC 872 ms
93,160 KB
testcase_37 AC 872 ms
92,340 KB
testcase_38 AC 894 ms
93,036 KB
testcase_39 AC 908 ms
92,660 KB
testcase_40 AC 953 ms
92,700 KB
testcase_41 AC 916 ms
92,852 KB
testcase_42 AC 914 ms
91,696 KB
testcase_43 AC 942 ms
91,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

S = input()
N = len(S)
dp = [0] * N
dp[0] = 1
appear_dict = defaultdict(list)

for i in range(1, N):
    if len(appear_dict[S[i]]) == 0:
        dp[i] = dp[i-1] + i + 1
    else:
        dp[i] = dp[i-1] + i - appear_dict[S[i]][-1]
    
    appear_dict[S[i]].append(i)

ans = sum(dp) / (N*(N+1)/2)
print(ans)
0