結果

問題 No.2419 MMA文字列2
ユーザー chaemonchaemon
提出日時 2023-08-15 15:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,360 KB
最終ジャッジ日時 2024-05-03 02:58:15
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,308 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 33 ms
53,196 KB
testcase_03 AC 43 ms
62,832 KB
testcase_04 AC 42 ms
62,172 KB
testcase_05 AC 33 ms
52,560 KB
testcase_06 AC 33 ms
54,004 KB
testcase_07 AC 34 ms
52,128 KB
testcase_08 AC 33 ms
52,456 KB
testcase_09 AC 32 ms
52,584 KB
testcase_10 AC 35 ms
52,724 KB
testcase_11 AC 42 ms
62,020 KB
testcase_12 AC 105 ms
88,816 KB
testcase_13 AC 53 ms
71,952 KB
testcase_14 AC 159 ms
100,352 KB
testcase_15 AC 114 ms
88,416 KB
testcase_16 AC 161 ms
101,308 KB
testcase_17 AC 83 ms
80,776 KB
testcase_18 AC 167 ms
102,372 KB
testcase_19 AC 167 ms
103,216 KB
testcase_20 AC 83 ms
80,652 KB
testcase_21 AC 79 ms
80,604 KB
testcase_22 AC 295 ms
132,060 KB
testcase_23 AC 320 ms
132,300 KB
testcase_24 AC 307 ms
132,200 KB
testcase_25 AC 294 ms
131,992 KB
testcase_26 AC 77 ms
80,624 KB
testcase_27 AC 287 ms
132,232 KB
testcase_28 AC 291 ms
132,360 KB
testcase_29 AC 310 ms
132,244 KB
testcase_30 AC 304 ms
132,296 KB
testcase_31 AC 294 ms
132,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
#alpha_set = set(list(S))
# ruiseki[i][s]をS[:i]のアルファベットsの出現回数とする
# 初期化
#ruiseki = [{s:0 for s in alpha_set} for _ in range(len(S)+1)]
ruiseki = [[0 for _ in range(26)] for _ in range(len(S)+1)]
for i, A in enumerate(S):
    i += 1
    #for MM in alpha_set:
    for MM in range(26):
        ruiseki[i][MM] += ruiseki[i-1][MM] 
    ruiseki[i][ord(A) - ord('A')] += 1 

ans = 0
for i in  range(len(S)):
    # S[i]をMMA文字列の3文字目のアルファベットとし、変数Aとする
    #A = S[i]
    A = ord(S[i]) - ord('A')
    # 変数MMを、MMA文字列の1文字目と2文字目のアルファベットとする
    #for MM in ruiseki[i]:
    for MM in range(26):
        if A == MM: # 1文字目2文字目3文字目が全て同じ文字列はMMA文字列でない
            continue
        ans += ruiseki[i][MM]*(ruiseki[i][MM]-1)//2

print(ans)
0