結果

問題 No.2276 I Want AC
ユーザー wgrapewgrape
提出日時 2024-10-17 10:38:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 5,013 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,376 KB
最終ジャッジ日時 2024-10-17 10:38:35
合計ジャッジ時間 11,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,136 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 35 ms
52,272 KB
testcase_04 AC 34 ms
52,132 KB
testcase_05 AC 34 ms
52,060 KB
testcase_06 AC 34 ms
52,632 KB
testcase_07 AC 34 ms
52,884 KB
testcase_08 AC 34 ms
53,112 KB
testcase_09 AC 35 ms
53,912 KB
testcase_10 AC 34 ms
53,144 KB
testcase_11 AC 57 ms
66,612 KB
testcase_12 AC 65 ms
68,944 KB
testcase_13 AC 54 ms
65,900 KB
testcase_14 AC 53 ms
65,276 KB
testcase_15 AC 55 ms
67,632 KB
testcase_16 AC 60 ms
66,876 KB
testcase_17 AC 61 ms
68,100 KB
testcase_18 AC 59 ms
66,756 KB
testcase_19 AC 51 ms
64,680 KB
testcase_20 AC 64 ms
69,408 KB
testcase_21 AC 54 ms
66,412 KB
testcase_22 AC 52 ms
65,872 KB
testcase_23 AC 65 ms
69,524 KB
testcase_24 AC 67 ms
69,260 KB
testcase_25 AC 68 ms
69,616 KB
testcase_26 AC 64 ms
70,316 KB
testcase_27 AC 69 ms
69,292 KB
testcase_28 AC 63 ms
68,852 KB
testcase_29 AC 58 ms
68,072 KB
testcase_30 AC 62 ms
68,116 KB
testcase_31 AC 57 ms
67,608 KB
testcase_32 AC 66 ms
70,344 KB
testcase_33 AC 61 ms
68,404 KB
testcase_34 AC 61 ms
69,344 KB
testcase_35 AC 50 ms
64,660 KB
testcase_36 AC 49 ms
64,740 KB
testcase_37 AC 54 ms
66,876 KB
testcase_38 AC 50 ms
64,816 KB
testcase_39 AC 50 ms
64,392 KB
testcase_40 AC 52 ms
65,588 KB
testcase_41 AC 52 ms
64,936 KB
testcase_42 AC 56 ms
68,216 KB
testcase_43 AC 57 ms
66,100 KB
testcase_44 AC 60 ms
66,348 KB
testcase_45 AC 59 ms
67,976 KB
testcase_46 AC 62 ms
67,896 KB
testcase_47 AC 60 ms
67,880 KB
testcase_48 AC 61 ms
69,480 KB
testcase_49 AC 61 ms
67,928 KB
testcase_50 AC 60 ms
67,176 KB
testcase_51 AC 63 ms
68,388 KB
testcase_52 AC 63 ms
68,168 KB
testcase_53 AC 66 ms
71,376 KB
testcase_54 AC 61 ms
69,396 KB
testcase_55 AC 61 ms
68,652 KB
testcase_56 AC 58 ms
68,400 KB
testcase_57 AC 60 ms
69,800 KB
testcase_58 AC 61 ms
68,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ?が全部Cだったときの数をカウント
# 前から順に、「その?がAだったら?」を計算していく
# その?より前にあったAの数だけ減り、それよりあとにあるC + ?の数だけ増える

N = int(input())
S = input()

Ccnt = [0] * (N + 1)
Qcnt = [0] * (N + 1)

for i in range(N - 1, -1, -1):
    Ccnt[i] += Ccnt[i + 1]
    Qcnt[i] += Qcnt[i + 1]
    if S[i] == "C":
        Ccnt[i] += 1
    elif S[i] == "?":
        Qcnt[i] += 1
        
cur = 0
for i in range(N):
    if S[i] == "A":
        cur += Ccnt[i]
        cur += Qcnt[i] # 全部Cだと見做すので
        
ans = cur
Acnt = 0
for i in range(N):
    if S[i] == "A":
        Acnt += 1
    elif S[i] == "?":
        # この?がAだったら?
        cur -= Acnt # そこまでにあったAの数だけ減る
        cur += Ccnt[i + 1] # それ以降にあるCの数だけ増える
        cur += Qcnt[i + 1] # それ以降にある?の数だけ増える
        ans = max(ans, cur)
        # この?はAに変わるので、Acntが1増える
        Acnt += 1

print(ans)
0