結果

問題 No.852 連続部分文字列
ユーザー 👑 KazunKazun
提出日時 2021-03-09 04:46:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 3,153 ms
コード長 165 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-10-10 18:17:21
合計ジャッジ時間 8,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,872 KB
testcase_01 AC 56 ms
63,232 KB
testcase_02 AC 56 ms
63,232 KB
testcase_03 AC 55 ms
63,488 KB
testcase_04 AC 54 ms
63,360 KB
testcase_05 AC 56 ms
64,768 KB
testcase_06 AC 55 ms
64,768 KB
testcase_07 AC 57 ms
64,384 KB
testcase_08 AC 55 ms
63,360 KB
testcase_09 AC 54 ms
63,488 KB
testcase_10 AC 56 ms
64,128 KB
testcase_11 AC 54 ms
63,360 KB
testcase_12 AC 57 ms
64,512 KB
testcase_13 AC 76 ms
77,184 KB
testcase_14 AC 65 ms
73,728 KB
testcase_15 AC 80 ms
77,312 KB
testcase_16 AC 76 ms
77,676 KB
testcase_17 AC 78 ms
77,184 KB
testcase_18 AC 78 ms
77,440 KB
testcase_19 AC 64 ms
68,864 KB
testcase_20 AC 74 ms
77,304 KB
testcase_21 AC 79 ms
77,440 KB
testcase_22 AC 72 ms
77,360 KB
testcase_23 AC 75 ms
77,568 KB
testcase_24 AC 72 ms
77,440 KB
testcase_25 AC 77 ms
77,696 KB
testcase_26 AC 80 ms
77,184 KB
testcase_27 AC 76 ms
77,568 KB
testcase_28 AC 78 ms
77,568 KB
testcase_29 AC 78 ms
77,312 KB
testcase_30 AC 65 ms
71,808 KB
testcase_31 AC 78 ms
77,568 KB
testcase_32 AC 81 ms
77,760 KB
testcase_33 AC 328 ms
79,140 KB
testcase_34 AC 330 ms
79,488 KB
testcase_35 AC 337 ms
78,976 KB
testcase_36 AC 336 ms
78,976 KB
testcase_37 AC 333 ms
79,236 KB
testcase_38 AC 331 ms
78,976 KB
testcase_39 AC 331 ms
78,976 KB
testcase_40 AC 331 ms
79,172 KB
testcase_41 AC 336 ms
78,976 KB
testcase_42 AC 337 ms
79,104 KB
testcase_43 AC 336 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase as X
S=input()

N=len(S)
R={x:0 for x in X}
A=0
for i,s in enumerate(S,1):
    R[s]=i
    A+=sum(R.values())
print(A/(N*(N+1)//2))
0