結果

問題 No.852 連続部分文字列
ユーザー ああああ
提出日時 2023-01-18 06:56:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 3,153 ms
コード長 468 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-06-11 10:11:56
合計ジャッジ時間 7,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,464 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 48 ms
57,856 KB
testcase_07 AC 44 ms
57,600 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 44 ms
58,112 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 46 ms
58,112 KB
testcase_13 AC 51 ms
60,032 KB
testcase_14 AC 49 ms
60,032 KB
testcase_15 AC 54 ms
59,904 KB
testcase_16 AC 52 ms
60,288 KB
testcase_17 AC 54 ms
60,544 KB
testcase_18 AC 56 ms
60,416 KB
testcase_19 AC 48 ms
59,520 KB
testcase_20 AC 55 ms
60,032 KB
testcase_21 AC 56 ms
60,496 KB
testcase_22 AC 52 ms
60,800 KB
testcase_23 AC 56 ms
60,672 KB
testcase_24 AC 52 ms
60,672 KB
testcase_25 AC 53 ms
60,160 KB
testcase_26 AC 59 ms
59,904 KB
testcase_27 AC 52 ms
60,032 KB
testcase_28 AC 56 ms
60,288 KB
testcase_29 AC 56 ms
59,904 KB
testcase_30 AC 49 ms
59,560 KB
testcase_31 AC 56 ms
60,160 KB
testcase_32 AC 57 ms
60,544 KB
testcase_33 AC 249 ms
65,408 KB
testcase_34 AC 249 ms
64,896 KB
testcase_35 AC 244 ms
65,024 KB
testcase_36 AC 243 ms
64,896 KB
testcase_37 AC 244 ms
65,152 KB
testcase_38 AC 245 ms
65,664 KB
testcase_39 AC 360 ms
65,920 KB
testcase_40 AC 243 ms
65,792 KB
testcase_41 AC 251 ms
65,280 KB
testcase_42 AC 347 ms
66,176 KB
testcase_43 AC 245 ms
66,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alph = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

s = input()
n = len(s)
ans = 0.0
all_num = n * (n + 1) // 2
for i in range(26):
    res = 0
    cnt = 0
    for j in range(n):
        if s[j] == alph[i]:
            res += cnt * (cnt + 1) // 2
            cnt = 0
        else:
            cnt += 1
    res += cnt * (cnt + 1) // 2
    ans += (all_num - res) / all_num
print(ans)
0