結果

問題 No.852 連続部分文字列
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-01 12:08:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,131 ms / 3,153 ms
コード長 867 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-12-01 12:08:25
合計ジャッジ時間 15,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 44 ms
58,752 KB
testcase_06 AC 38 ms
57,984 KB
testcase_07 AC 38 ms
57,984 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 35 ms
51,584 KB
testcase_10 AC 38 ms
57,984 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 41 ms
58,496 KB
testcase_13 AC 66 ms
72,192 KB
testcase_14 AC 53 ms
65,280 KB
testcase_15 AC 77 ms
75,776 KB
testcase_16 AC 62 ms
72,064 KB
testcase_17 AC 72 ms
75,680 KB
testcase_18 AC 80 ms
76,032 KB
testcase_19 AC 45 ms
61,696 KB
testcase_20 AC 72 ms
69,504 KB
testcase_21 AC 81 ms
75,392 KB
testcase_22 AC 55 ms
67,072 KB
testcase_23 AC 71 ms
75,452 KB
testcase_24 AC 57 ms
68,864 KB
testcase_25 AC 69 ms
76,032 KB
testcase_26 AC 80 ms
75,520 KB
testcase_27 AC 62 ms
72,192 KB
testcase_28 AC 74 ms
75,264 KB
testcase_29 AC 81 ms
75,776 KB
testcase_30 AC 50 ms
64,256 KB
testcase_31 AC 81 ms
75,776 KB
testcase_32 AC 82 ms
75,776 KB
testcase_33 AC 1,126 ms
77,184 KB
testcase_34 AC 1,129 ms
77,184 KB
testcase_35 AC 1,127 ms
76,928 KB
testcase_36 AC 1,119 ms
77,312 KB
testcase_37 AC 1,122 ms
77,696 KB
testcase_38 AC 1,124 ms
77,184 KB
testcase_39 AC 1,125 ms
77,440 KB
testcase_40 AC 1,131 ms
77,468 KB
testcase_41 AC 1,126 ms
77,568 KB
testcase_42 AC 594 ms
77,312 KB
testcase_43 AC 753 ms
77,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/852

MAX_VALUE = 10 ** 18

def main():
    S = input()

    min_alphabet_base = [MAX_VALUE] * 26
    answer = 0
    for i in range(len(S)):
        s = S[i]
        s_value = ord(s) - ord("a")

        min_alphabet_base[s_value] = i

        # 種類数計算
        min_alphabets = min_alphabet_base.copy()
        min_alphabets.sort()

        max_spiceses = 0
        for k in range(len(min_alphabets)):
            if min_alphabets[k] < MAX_VALUE:
                max_spiceses += 1

        prev_ = -1
        for k in range(len(min_alphabets)):
            i0 = min_alphabets[k]
            if i0 == MAX_VALUE:
                break

            answer += (i0 - prev_) * (max_spiceses - k)
            prev_ = i0
            
    n0 = (len(S) * (len(S) + 1)) // 2
    print(answer / n0)

if __name__ == "__main__":
    main()
0