結果

問題 No.2276 I Want AC
ユーザー noriocnorioc
提出日時 2024-08-18 23:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,124 KB
最終ジャッジ日時 2024-08-18 23:10:14
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,464 KB
testcase_01 AC 34 ms
52,984 KB
testcase_02 AC 33 ms
52,880 KB
testcase_03 AC 33 ms
51,820 KB
testcase_04 AC 33 ms
52,180 KB
testcase_05 AC 34 ms
53,600 KB
testcase_06 AC 35 ms
51,748 KB
testcase_07 AC 34 ms
52,744 KB
testcase_08 AC 35 ms
52,972 KB
testcase_09 AC 42 ms
52,176 KB
testcase_10 AC 36 ms
52,884 KB
testcase_11 AC 52 ms
70,448 KB
testcase_12 AC 67 ms
75,828 KB
testcase_13 AC 53 ms
70,656 KB
testcase_14 AC 50 ms
66,044 KB
testcase_15 AC 58 ms
75,172 KB
testcase_16 AC 55 ms
74,128 KB
testcase_17 AC 60 ms
75,380 KB
testcase_18 AC 58 ms
75,048 KB
testcase_19 AC 47 ms
63,592 KB
testcase_20 AC 64 ms
75,648 KB
testcase_21 AC 52 ms
72,980 KB
testcase_22 AC 49 ms
67,588 KB
testcase_23 AC 63 ms
75,940 KB
testcase_24 AC 63 ms
75,460 KB
testcase_25 AC 64 ms
75,256 KB
testcase_26 AC 91 ms
75,496 KB
testcase_27 AC 63 ms
76,000 KB
testcase_28 AC 63 ms
75,320 KB
testcase_29 AC 59 ms
75,572 KB
testcase_30 AC 61 ms
75,448 KB
testcase_31 AC 56 ms
75,496 KB
testcase_32 AC 63 ms
75,512 KB
testcase_33 AC 61 ms
75,632 KB
testcase_34 AC 61 ms
75,692 KB
testcase_35 AC 42 ms
60,108 KB
testcase_36 AC 40 ms
60,104 KB
testcase_37 AC 45 ms
61,196 KB
testcase_38 AC 58 ms
75,584 KB
testcase_39 AC 54 ms
75,556 KB
testcase_40 AC 55 ms
75,736 KB
testcase_41 AC 56 ms
75,628 KB
testcase_42 AC 56 ms
75,660 KB
testcase_43 AC 57 ms
75,764 KB
testcase_44 AC 59 ms
75,568 KB
testcase_45 AC 58 ms
75,468 KB
testcase_46 AC 60 ms
75,496 KB
testcase_47 AC 59 ms
75,432 KB
testcase_48 AC 59 ms
75,376 KB
testcase_49 AC 62 ms
75,560 KB
testcase_50 AC 62 ms
75,532 KB
testcase_51 AC 60 ms
75,324 KB
testcase_52 AC 61 ms
75,564 KB
testcase_53 AC 64 ms
75,812 KB
testcase_54 AC 61 ms
75,296 KB
testcase_55 AC 61 ms
75,612 KB
testcase_56 AC 57 ms
75,328 KB
testcase_57 AC 57 ms
76,124 KB
testcase_58 AC 59 ms
75,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# ? が全て C のときの AC の個数
ac = 0
a = 0
for c in S:
    match c:
        case 'C' | '?':
            ac += a
        case 'A':
            a += 1

ans = ac
rc = S.count('C') + S.count('?')  # 右側にある C の個数
la = 0
d = 0
for c in S:
    match c:
        case '?':
            # C -> A に変えたときの差分
            d -= la  # 左側の A の個数分だけ減る
            d += (rc-1)  # 右側の C の個数分だけ増える
            ans = max(ans, ac + d)
            la += 1
            rc -= 1
        case 'A':
            la += 1
        case 'C':
            rc -= 1

print(ans)
0