結果

問題 No.852 連続部分文字列
ユーザー kurimupykurimupy
提出日時 2020-06-18 12:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 3,153 ms
コード長 407 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 159,308 KB
最終ジャッジ日時 2024-07-03 12:43:02
合計ジャッジ時間 5,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,536 KB
testcase_01 AC 35 ms
53,372 KB
testcase_02 AC 35 ms
52,892 KB
testcase_03 AC 37 ms
52,464 KB
testcase_04 AC 37 ms
52,404 KB
testcase_05 AC 37 ms
52,708 KB
testcase_06 AC 41 ms
52,992 KB
testcase_07 AC 36 ms
52,948 KB
testcase_08 AC 36 ms
53,632 KB
testcase_09 AC 34 ms
53,552 KB
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 35 ms
52,196 KB
testcase_12 AC 36 ms
52,392 KB
testcase_13 AC 45 ms
64,852 KB
testcase_14 AC 44 ms
62,608 KB
testcase_15 AC 50 ms
68,380 KB
testcase_16 AC 46 ms
65,252 KB
testcase_17 AC 46 ms
66,088 KB
testcase_18 AC 49 ms
69,644 KB
testcase_19 AC 43 ms
61,064 KB
testcase_20 AC 44 ms
64,096 KB
testcase_21 AC 51 ms
69,844 KB
testcase_22 AC 44 ms
63,312 KB
testcase_23 AC 47 ms
66,860 KB
testcase_24 AC 44 ms
63,916 KB
testcase_25 AC 46 ms
66,008 KB
testcase_26 AC 51 ms
68,980 KB
testcase_27 AC 45 ms
65,580 KB
testcase_28 AC 46 ms
67,668 KB
testcase_29 AC 50 ms
69,296 KB
testcase_30 AC 43 ms
60,948 KB
testcase_31 AC 50 ms
70,048 KB
testcase_32 AC 51 ms
70,512 KB
testcase_33 AC 230 ms
159,096 KB
testcase_34 AC 230 ms
158,404 KB
testcase_35 AC 237 ms
159,308 KB
testcase_36 AC 233 ms
158,844 KB
testcase_37 AC 234 ms
158,800 KB
testcase_38 AC 228 ms
159,004 KB
testcase_39 AC 233 ms
159,300 KB
testcase_40 AC 232 ms
158,728 KB
testcase_41 AC 228 ms
159,028 KB
testcase_42 AC 227 ms
154,336 KB
testcase_43 AC 227 ms
155,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
N = len(S)
alpha = "abcdefghijklmnopqrstuvwxyz"
d = {alpha[i]: [0] for i in range(26)}
for i in range(N):
    d[S[i]].append(i+1)
for i in range(26):
    d[alpha[i]].append(N+1)
ans = 0
down = N*(N+1)//2
for i in range(26):
    P = N*(N+1)//2
    for j in range(len(d[alpha[i]])-1):
        x, y = d[alpha[i]][j], d[alpha[i]][j+1]
        P -= (y-x)*(y-x-1)//2
    ans += P/down
print(ans)
0