結果

問題 No.852 連続部分文字列
ユーザー kekurekekure
提出日時 2019-08-05 09:37:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 61,004 KB
最終ジャッジ日時 2024-07-18 12:33:10
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
61,004 KB
testcase_01 AC 32 ms
52,760 KB
testcase_02 AC 31 ms
53,032 KB
testcase_03 AC 33 ms
52,684 KB
testcase_04 AC 33 ms
53,504 KB
testcase_05 AC 43 ms
60,400 KB
testcase_06 AC 36 ms
59,056 KB
testcase_07 AC 38 ms
59,044 KB
testcase_08 AC 34 ms
53,076 KB
testcase_09 AC 33 ms
52,732 KB
testcase_10 AC 37 ms
59,020 KB
testcase_11 AC 34 ms
52,884 KB
testcase_12 AC 44 ms
59,296 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
l = len(s)
k = 0  # 文字の種類
b = 0  # 部分文字列の数
for i in range(l):
    k += 1
    b += 1
    t = 1  # 直前の文字の種類数
    for j in range(i + 1, l):
        b += 1
        if not s[j] in s[i: j]:
            t += 1
        k += t

print(k / b)
0