結果

問題 No.852 連続部分文字列
ユーザー ttrttr
提出日時 2020-02-01 14:36:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 735 ms / 3,153 ms
コード長 245 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,896 KB
最終ジャッジ日時 2024-09-18 19:59:58
合計ジャッジ時間 10,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 24 ms
10,496 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 36 ms
11,264 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 50 ms
11,648 KB
testcase_16 AC 39 ms
11,136 KB
testcase_17 AC 41 ms
11,392 KB
testcase_18 AC 45 ms
11,648 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 32 ms
11,008 KB
testcase_21 AC 45 ms
11,648 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 39 ms
11,264 KB
testcase_24 AC 33 ms
10,880 KB
testcase_25 AC 39 ms
11,392 KB
testcase_26 AC 45 ms
11,648 KB
testcase_27 AC 39 ms
11,392 KB
testcase_28 AC 42 ms
11,392 KB
testcase_29 AC 47 ms
11,776 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 47 ms
11,776 KB
testcase_32 AC 48 ms
11,904 KB
testcase_33 AC 671 ms
50,848 KB
testcase_34 AC 640 ms
50,808 KB
testcase_35 AC 661 ms
50,720 KB
testcase_36 AC 636 ms
50,676 KB
testcase_37 AC 708 ms
50,856 KB
testcase_38 AC 666 ms
50,884 KB
testcase_39 AC 649 ms
50,788 KB
testcase_40 AC 735 ms
50,896 KB
testcase_41 AC 664 ms
50,672 KB
testcase_42 AC 672 ms
50,876 KB
testcase_43 AC 687 ms
50,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N= len(S)

dic = {}
dic[S[0]] = 0
dp = [0]*N
dp[0] = 1
mod = N*(N+1)//2
for i in range(1, N):
    if S[i] in dic:
        dp[i] = dp[i-1] + i - dic[S[i]]
    else:
        dp[i] = dp[i-1] + i + 1
    dic[S[i]] = i

print(sum(dp)/mod)
0