結果

問題 No.852 連続部分文字列
ユーザー maspymaspy
提出日時 2020-02-19 15:52:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 656 ms / 3,153 ms
コード長 447 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 49,704 KB
最終ジャッジ日時 2024-10-08 03:03:25
合計ジャッジ時間 27,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 471 ms
43,432 KB
testcase_01 AC 480 ms
43,556 KB
testcase_02 AC 477 ms
43,932 KB
testcase_03 AC 468 ms
43,812 KB
testcase_04 AC 469 ms
43,940 KB
testcase_05 AC 477 ms
43,560 KB
testcase_06 AC 478 ms
43,552 KB
testcase_07 AC 471 ms
43,812 KB
testcase_08 AC 473 ms
43,684 KB
testcase_09 AC 480 ms
43,812 KB
testcase_10 AC 492 ms
43,556 KB
testcase_11 AC 476 ms
43,808 KB
testcase_12 AC 480 ms
43,428 KB
testcase_13 AC 476 ms
43,552 KB
testcase_14 AC 479 ms
43,936 KB
testcase_15 AC 482 ms
43,808 KB
testcase_16 AC 490 ms
43,932 KB
testcase_17 AC 482 ms
43,560 KB
testcase_18 AC 528 ms
43,936 KB
testcase_19 AC 488 ms
43,944 KB
testcase_20 AC 479 ms
43,944 KB
testcase_21 AC 469 ms
43,592 KB
testcase_22 AC 479 ms
43,936 KB
testcase_23 AC 468 ms
43,816 KB
testcase_24 AC 480 ms
43,552 KB
testcase_25 AC 469 ms
43,808 KB
testcase_26 AC 484 ms
43,820 KB
testcase_27 AC 474 ms
43,424 KB
testcase_28 AC 487 ms
43,684 KB
testcase_29 AC 482 ms
43,680 KB
testcase_30 AC 482 ms
43,684 KB
testcase_31 AC 471 ms
43,676 KB
testcase_32 AC 472 ms
43,680 KB
testcase_33 AC 656 ms
45,868 KB
testcase_34 AC 631 ms
46,384 KB
testcase_35 AC 627 ms
46,244 KB
testcase_36 AC 626 ms
45,996 KB
testcase_37 AC 636 ms
46,512 KB
testcase_38 AC 619 ms
46,368 KB
testcase_39 AC 632 ms
45,980 KB
testcase_40 AC 629 ms
46,384 KB
testcase_41 AC 621 ms
46,508 KB
testcase_42 AC 603 ms
45,344 KB
testcase_43 AC 613 ms
49,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
stdin = open(0)

# %%
import numpy as np


# %%
S = np.frombuffer(stdin.buffer.read().rstrip(), 'S1')


# %%
n = len(S)
total = n * (n + 1) // 2
numerator = 0
for i in range(26):
    alphabet = chr(ord('a') + i).encode()
    ind = np.hstack([[-1], np.where(S == alphabet)[0], [n]])
    gaps = ind[1:] - ind[:-1] - 1
    numerator += total - (gaps * (gaps + 1) // 2).sum()

# %%
answer = numerator / total
print(answer)
0