結果

問題 No.2419 MMA文字列2
ユーザー chaemonchaemon
提出日時 2023-08-15 15:33:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 912 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-05-03 02:49:52
合計ジャッジ時間 15,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,128 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 891 ms
56,320 KB
testcase_13 AC 141 ms
13,056 KB
testcase_14 AC 1,760 ms
103,168 KB
testcase_15 AC 1,025 ms
65,664 KB
testcase_16 AC 1,827 ms
108,032 KB
testcase_17 AC 521 ms
35,712 KB
testcase_18 AC 1,919 ms
112,768 KB
testcase_19 AC 1,875 ms
115,968 KB
testcase_20 AC 610 ms
39,936 KB
testcase_21 AC 404 ms
29,440 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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