結果

問題 No.852 連続部分文字列
ユーザー kohei2019kohei2019
提出日時 2022-05-04 12:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 287 ms / 3,153 ms
コード長 326 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 77,256 KB
最終ジャッジ日時 2024-07-03 14:50:08
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 42 ms
58,112 KB
testcase_06 AC 39 ms
57,728 KB
testcase_07 AC 39 ms
57,856 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 39 ms
57,984 KB
testcase_11 AC 35 ms
51,840 KB
testcase_12 AC 38 ms
58,240 KB
testcase_13 AC 52 ms
72,064 KB
testcase_14 AC 47 ms
64,768 KB
testcase_15 AC 60 ms
75,132 KB
testcase_16 AC 53 ms
72,320 KB
testcase_17 AC 58 ms
75,136 KB
testcase_18 AC 60 ms
74,980 KB
testcase_19 AC 42 ms
60,160 KB
testcase_20 AC 50 ms
69,248 KB
testcase_21 AC 65 ms
75,116 KB
testcase_22 AC 58 ms
67,456 KB
testcase_23 AC 63 ms
74,924 KB
testcase_24 AC 50 ms
68,096 KB
testcase_25 AC 63 ms
75,392 KB
testcase_26 AC 65 ms
75,392 KB
testcase_27 AC 53 ms
72,832 KB
testcase_28 AC 59 ms
75,064 KB
testcase_29 AC 61 ms
75,724 KB
testcase_30 AC 50 ms
63,232 KB
testcase_31 AC 61 ms
74,984 KB
testcase_32 AC 63 ms
75,008 KB
testcase_33 AC 250 ms
76,928 KB
testcase_34 AC 250 ms
76,672 KB
testcase_35 AC 250 ms
77,040 KB
testcase_36 AC 253 ms
76,928 KB
testcase_37 AC 248 ms
76,672 KB
testcase_38 AC 248 ms
76,928 KB
testcase_39 AC 287 ms
76,928 KB
testcase_40 AC 249 ms
77,184 KB
testcase_41 AC 250 ms
76,896 KB
testcase_42 AC 278 ms
77,056 KB
testcase_43 AC 244 ms
77,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
alp = 'abcdefghijklmnopqrstuvwxyz'
ans = 0
allp = N*(N+1)//2
for i in range(26):
    rm = 0
    cnt = 0
    for j in range(N):
        if S[j] == alp[i]:
            rm += cnt*(cnt+1)//2
            cnt = 0
        else:
            cnt += 1
    rm += cnt*(cnt+1)//2
    ans += (allp-rm)/allp
print(ans)
0