結果

問題 No.2419 MMA文字列2
ユーザー chaemonchaemon
提出日時 2023-08-15 15:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,352 KB
最終ジャッジ日時 2024-11-23 23:27:59
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 48 ms
51,840 KB
testcase_02 AC 47 ms
52,480 KB
testcase_03 AC 64 ms
61,696 KB
testcase_04 AC 56 ms
61,184 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 45 ms
51,968 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 44 ms
52,224 KB
testcase_09 AC 43 ms
51,840 KB
testcase_10 AC 44 ms
52,480 KB
testcase_11 AC 56 ms
61,312 KB
testcase_12 AC 139 ms
88,192 KB
testcase_13 AC 76 ms
70,912 KB
testcase_14 AC 204 ms
99,840 KB
testcase_15 AC 147 ms
88,192 KB
testcase_16 AC 218 ms
100,992 KB
testcase_17 AC 109 ms
80,512 KB
testcase_18 AC 212 ms
102,272 KB
testcase_19 AC 221 ms
103,040 KB
testcase_20 AC 113 ms
80,768 KB
testcase_21 AC 102 ms
80,896 KB
testcase_22 AC 369 ms
131,840 KB
testcase_23 AC 379 ms
131,840 KB
testcase_24 AC 379 ms
131,968 KB
testcase_25 AC 367 ms
132,224 KB
testcase_26 AC 102 ms
80,512 KB
testcase_27 AC 361 ms
131,840 KB
testcase_28 AC 371 ms
132,352 KB
testcase_29 AC 388 ms
131,712 KB
testcase_30 AC 367 ms
131,840 KB
testcase_31 AC 370 ms
131,840 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