結果

問題 No.2276 I Want AC
ユーザー sotanishysotanishy
提出日時 2023-04-21 22:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 79,424 KB
最終ジャッジ日時 2024-11-06 15:30:00
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,724 KB
testcase_01 AC 40 ms
53,568 KB
testcase_02 AC 40 ms
52,468 KB
testcase_03 AC 39 ms
53,668 KB
testcase_04 AC 40 ms
52,672 KB
testcase_05 AC 39 ms
53,016 KB
testcase_06 AC 40 ms
52,464 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 39 ms
53,076 KB
testcase_09 AC 40 ms
52,476 KB
testcase_10 AC 39 ms
53,256 KB
testcase_11 AC 67 ms
72,296 KB
testcase_12 AC 81 ms
78,796 KB
testcase_13 AC 66 ms
71,992 KB
testcase_14 AC 60 ms
68,220 KB
testcase_15 AC 68 ms
74,216 KB
testcase_16 AC 70 ms
74,848 KB
testcase_17 AC 75 ms
78,464 KB
testcase_18 AC 76 ms
77,612 KB
testcase_19 AC 60 ms
67,060 KB
testcase_20 AC 81 ms
79,136 KB
testcase_21 AC 67 ms
72,588 KB
testcase_22 AC 63 ms
69,716 KB
testcase_23 AC 83 ms
78,944 KB
testcase_24 AC 81 ms
78,772 KB
testcase_25 AC 82 ms
79,296 KB
testcase_26 AC 79 ms
79,032 KB
testcase_27 AC 80 ms
79,108 KB
testcase_28 AC 80 ms
78,816 KB
testcase_29 AC 78 ms
78,912 KB
testcase_30 AC 80 ms
78,872 KB
testcase_31 AC 77 ms
78,948 KB
testcase_32 AC 83 ms
79,228 KB
testcase_33 AC 81 ms
79,228 KB
testcase_34 AC 79 ms
78,912 KB
testcase_35 AC 57 ms
65,284 KB
testcase_36 AC 58 ms
65,996 KB
testcase_37 AC 62 ms
67,288 KB
testcase_38 AC 68 ms
78,860 KB
testcase_39 AC 67 ms
79,276 KB
testcase_40 AC 70 ms
78,992 KB
testcase_41 AC 68 ms
79,128 KB
testcase_42 AC 70 ms
79,276 KB
testcase_43 AC 70 ms
79,104 KB
testcase_44 AC 76 ms
78,856 KB
testcase_45 AC 76 ms
79,260 KB
testcase_46 AC 77 ms
79,172 KB
testcase_47 AC 76 ms
78,956 KB
testcase_48 AC 77 ms
79,424 KB
testcase_49 AC 75 ms
78,984 KB
testcase_50 AC 77 ms
78,960 KB
testcase_51 AC 78 ms
78,912 KB
testcase_52 AC 75 ms
78,932 KB
testcase_53 AC 78 ms
78,808 KB
testcase_54 AC 78 ms
79,128 KB
testcase_55 AC 78 ms
78,912 KB
testcase_56 AC 76 ms
79,032 KB
testcase_57 AC 66 ms
70,260 KB
testcase_58 AC 79 ms
79,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
S = input().rstrip()


right = [0] * (N+1)
cnt = 0
for i in range(N)[::-1]:
    right[i] = right[i+1]
    if S[i] == 'A':
        right[i] += cnt
    else:
        cnt += 1


left = [0] * (N+1)
cnt = 0
for i in range(N):
    left[i+1] = left[i]
    if S[i] == 'C':
        left[i+1] += cnt
    else:
        cnt += 1

ans = 0
A = 0
C = 0
for c in S:
    if c != 'A':
        C += 1

for i in range(N+1):
    ans = max(ans, left[i] + right[i] + A * C)
    if i < N:
        if S[i] == 'A':
            A += 1
        elif S[i] == '?':
            A += 1
            C -= 1
        else:
            C -= 1

print(ans)
0