結果

問題 No.852 連続部分文字列
ユーザー lloyzlloyz
提出日時 2022-08-23 00:55:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 3,153 ms
コード長 469 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 68,304 KB
最終ジャッジ日時 2024-10-10 07:10:35
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,352 KB
testcase_01 AC 36 ms
53,204 KB
testcase_02 AC 36 ms
52,676 KB
testcase_03 AC 37 ms
53,484 KB
testcase_04 AC 37 ms
52,492 KB
testcase_05 AC 40 ms
58,488 KB
testcase_06 AC 40 ms
58,308 KB
testcase_07 AC 40 ms
59,116 KB
testcase_08 AC 40 ms
53,344 KB
testcase_09 AC 35 ms
53,560 KB
testcase_10 AC 39 ms
58,700 KB
testcase_11 AC 36 ms
52,272 KB
testcase_12 AC 40 ms
58,160 KB
testcase_13 AC 47 ms
60,864 KB
testcase_14 AC 45 ms
61,176 KB
testcase_15 AC 49 ms
61,328 KB
testcase_16 AC 46 ms
61,012 KB
testcase_17 AC 49 ms
60,840 KB
testcase_18 AC 49 ms
60,856 KB
testcase_19 AC 43 ms
58,980 KB
testcase_20 AC 46 ms
61,884 KB
testcase_21 AC 49 ms
59,852 KB
testcase_22 AC 47 ms
60,644 KB
testcase_23 AC 47 ms
60,468 KB
testcase_24 AC 46 ms
60,488 KB
testcase_25 AC 47 ms
60,636 KB
testcase_26 AC 49 ms
60,616 KB
testcase_27 AC 47 ms
61,248 KB
testcase_28 AC 48 ms
60,980 KB
testcase_29 AC 50 ms
60,768 KB
testcase_30 AC 44 ms
59,288 KB
testcase_31 AC 50 ms
60,832 KB
testcase_32 AC 51 ms
60,624 KB
testcase_33 AC 236 ms
65,508 KB
testcase_34 AC 242 ms
66,564 KB
testcase_35 AC 238 ms
64,976 KB
testcase_36 AC 235 ms
66,168 KB
testcase_37 AC 236 ms
66,560 KB
testcase_38 AC 239 ms
65,548 KB
testcase_39 AC 346 ms
66,408 KB
testcase_40 AC 233 ms
66,480 KB
testcase_41 AC 237 ms
66,140 KB
testcase_42 AC 338 ms
68,304 KB
testcase_43 AC 232 ms
68,240 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