結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 45 ms
62,208 KB
testcase_14 AC 45 ms
60,544 KB
testcase_15 AC 50 ms
65,664 KB
testcase_16 AC 44 ms
62,464 KB
testcase_17 AC 45 ms
64,000 KB
testcase_18 AC 49 ms
65,920 KB
testcase_19 AC 44 ms
59,648 KB
testcase_20 AC 44 ms
61,696 KB
testcase_21 AC 50 ms
66,176 KB
testcase_22 AC 45 ms
61,312 KB
testcase_23 AC 48 ms
63,232 KB
testcase_24 AC 49 ms
61,824 KB
testcase_25 AC 45 ms
63,104 KB
testcase_26 AC 49 ms
65,792 KB
testcase_27 AC 46 ms
62,720 KB
testcase_28 AC 48 ms
64,000 KB
testcase_29 AC 51 ms
65,920 KB
testcase_30 AC 45 ms
60,288 KB
testcase_31 AC 50 ms
66,176 KB
testcase_32 AC 51 ms
66,432 KB
testcase_33 AC 222 ms
170,792 KB
testcase_34 AC 224 ms
170,148 KB
testcase_35 AC 222 ms
170,424 KB
testcase_36 AC 229 ms
171,232 KB
testcase_37 AC 221 ms
170,164 KB
testcase_38 AC 218 ms
171,232 KB
testcase_39 AC 221 ms
170,836 KB
testcase_40 AC 223 ms
170,736 KB
testcase_41 AC 224 ms
170,588 KB
testcase_42 AC 229 ms
170,572 KB
testcase_43 AC 260 ms
198,436 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