結果

問題 No.852 連続部分文字列
ユーザー convexineqconvexineq
提出日時 2021-03-26 05:01:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 3,153 ms
コード長 248 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 197,924 KB
最終ジャッジ日時 2024-11-27 14:22:53
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 44 ms
62,080 KB
testcase_14 AC 43 ms
60,672 KB
testcase_15 AC 48 ms
65,632 KB
testcase_16 AC 44 ms
62,464 KB
testcase_17 AC 45 ms
63,872 KB
testcase_18 AC 50 ms
65,920 KB
testcase_19 AC 43 ms
59,288 KB
testcase_20 AC 45 ms
61,568 KB
testcase_21 AC 48 ms
65,792 KB
testcase_22 AC 44 ms
60,928 KB
testcase_23 AC 44 ms
63,360 KB
testcase_24 AC 46 ms
61,824 KB
testcase_25 AC 45 ms
62,720 KB
testcase_26 AC 48 ms
65,920 KB
testcase_27 AC 46 ms
62,464 KB
testcase_28 AC 45 ms
63,616 KB
testcase_29 AC 48 ms
65,792 KB
testcase_30 AC 43 ms
60,288 KB
testcase_31 AC 49 ms
66,176 KB
testcase_32 AC 50 ms
66,560 KB
testcase_33 AC 234 ms
170,656 KB
testcase_34 AC 234 ms
170,016 KB
testcase_35 AC 235 ms
170,168 KB
testcase_36 AC 228 ms
171,096 KB
testcase_37 AC 228 ms
170,292 KB
testcase_38 AC 237 ms
170,848 KB
testcase_39 AC 219 ms
170,956 KB
testcase_40 AC 227 ms
170,864 KB
testcase_41 AC 228 ms
170,584 KB
testcase_42 AC 227 ms
170,168 KB
testcase_43 AC 228 ms
197,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*s, = map(ord,input())
n = len(s)
res = [[-1] for _ in range(26)]
for i,si in enumerate(s):
    res[si-97].append(i)
cnt = 26*n*(n+1)//2
for r in res:
    r.append(n)
    for a,b in zip(r,r[1:]):
        cnt -= (b-a)*(b-a-1)//2
print(cnt*2/n/(n+1))
0