結果

問題 No.2419 MMA文字列2
ユーザー iseeisee
提出日時 2023-08-12 14:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 75,516 KB
最終ジャッジ日時 2024-11-19 18:27:47
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,016 KB
testcase_01 AC 38 ms
53,060 KB
testcase_02 AC 39 ms
52,064 KB
testcase_03 AC 38 ms
52,556 KB
testcase_04 AC 38 ms
52,420 KB
testcase_05 AC 38 ms
52,816 KB
testcase_06 AC 38 ms
52,448 KB
testcase_07 AC 38 ms
53,348 KB
testcase_08 AC 39 ms
52,660 KB
testcase_09 AC 38 ms
52,320 KB
testcase_10 AC 39 ms
52,632 KB
testcase_11 AC 38 ms
52,128 KB
testcase_12 AC 54 ms
66,952 KB
testcase_13 AC 46 ms
60,368 KB
testcase_14 AC 65 ms
75,512 KB
testcase_15 AC 55 ms
67,856 KB
testcase_16 AC 66 ms
75,224 KB
testcase_17 AC 50 ms
64,472 KB
testcase_18 AC 66 ms
75,388 KB
testcase_19 AC 67 ms
74,940 KB
testcase_20 AC 50 ms
64,888 KB
testcase_21 AC 49 ms
63,216 KB
testcase_22 AC 83 ms
75,512 KB
testcase_23 AC 83 ms
75,516 KB
testcase_24 AC 82 ms
75,328 KB
testcase_25 AC 83 ms
75,436 KB
testcase_26 AC 51 ms
64,152 KB
testcase_27 AC 85 ms
75,384 KB
testcase_28 AC 85 ms
75,292 KB
testcase_29 AC 86 ms
74,924 KB
testcase_30 AC 86 ms
75,324 KB
testcase_31 AC 87 ms
75,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

def main():
    # 入力
    S = input()
    N = len(S)
    # 計算・出力
    prev = {s:0 for s in ALPHABET}
    next = {s:0 for s in ALPHABET}
    for s in S:
        next[s] += 1
    ans = 0
    for i, s in enumerate(S):
        next[s] -= 1
        ans += prev[s] * (N-i-1 - next[s])
        prev[s] += 1
    print(ans)

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