結果

問題 No.852 連続部分文字列
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-30 10:15:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,340 KB
最終ジャッジ日時 2024-09-14 21:45:32
合計ジャッジ時間 27,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 32 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,368 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 30 ms
10,368 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 891 ms
10,624 KB
testcase_14 AC 408 ms
10,496 KB
testcase_15 AC 1,521 ms
10,624 KB
testcase_16 AC 819 ms
10,752 KB
testcase_17 AC 1,201 ms
10,752 KB
testcase_18 AC 1,557 ms
10,752 KB
testcase_19 AC 130 ms
10,496 KB
testcase_20 AC 664 ms
10,624 KB
testcase_21 AC 1,583 ms
10,624 KB
testcase_22 AC 500 ms
10,496 KB
testcase_23 AC 1,062 ms
10,624 KB
testcase_24 AC 660 ms
10,624 KB
testcase_25 AC 1,038 ms
10,624 KB
testcase_26 AC 1,543 ms
10,624 KB
testcase_27 AC 906 ms
10,624 KB
testcase_28 AC 1,162 ms
10,752 KB
testcase_29 AC 1,545 ms
10,752 KB
testcase_30 AC 297 ms
10,496 KB
testcase_31 AC 1,607 ms
10,880 KB
testcase_32 AC 1,721 ms
10,624 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)

# 左からi文字目移行の文字数 [i, N]
maxSize = [0] * (N + 1)
V = set()
for i, s in enumerate(S[:: -1], start=2):
    V.add(s)
    maxSize[-i] = len(V)

ans = 0
for left, s in enumerate(S):
    V = set()
    for right, t in enumerate(S[left:], start=left):
        V.add(t)
        if len(V) == maxSize[left]:
            ans += len(V) * (N - right)
            break
        ans += len(V)

print(ans / (N * (N + 1) // 2))
0