結果

問題 No.2276 I Want AC
ユーザー vwxyzvwxyz
提出日時 2024-08-15 11:43:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,020 KB
最終ジャッジ日時 2024-08-15 11:43:46
合計ジャッジ時間 13,679 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 93 ms
11,520 KB
testcase_12 AC 220 ms
13,428 KB
testcase_13 AC 91 ms
11,648 KB
testcase_14 AC 62 ms
11,136 KB
testcase_15 AC 138 ms
12,288 KB
testcase_16 AC 128 ms
12,160 KB
testcase_17 AC 225 ms
13,312 KB
testcase_18 AC 175 ms
12,800 KB
testcase_19 AC 36 ms
10,752 KB
testcase_20 AC 278 ms
13,632 KB
testcase_21 AC 110 ms
11,776 KB
testcase_22 AC 68 ms
11,264 KB
testcase_23 AC 249 ms
13,888 KB
testcase_24 AC 260 ms
13,888 KB
testcase_25 AC 244 ms
13,892 KB
testcase_26 AC 267 ms
14,016 KB
testcase_27 AC 263 ms
13,888 KB
testcase_28 AC 235 ms
14,020 KB
testcase_29 AC 232 ms
13,892 KB
testcase_30 AC 247 ms
13,896 KB
testcase_31 AC 215 ms
13,764 KB
testcase_32 AC 256 ms
13,896 KB
testcase_33 AC 267 ms
13,888 KB
testcase_34 AC 278 ms
13,760 KB
testcase_35 AC 206 ms
13,892 KB
testcase_36 AC 210 ms
13,892 KB
testcase_37 AC 298 ms
13,888 KB
testcase_38 AC 218 ms
14,016 KB
testcase_39 AC 211 ms
13,760 KB
testcase_40 AC 212 ms
13,888 KB
testcase_41 AC 215 ms
13,668 KB
testcase_42 AC 301 ms
13,892 KB
testcase_43 AC 303 ms
13,796 KB
testcase_44 AC 218 ms
13,892 KB
testcase_45 AC 261 ms
14,020 KB
testcase_46 AC 262 ms
14,016 KB
testcase_47 AC 219 ms
14,020 KB
testcase_48 AC 221 ms
13,892 KB
testcase_49 AC 263 ms
13,764 KB
testcase_50 AC 263 ms
13,892 KB
testcase_51 AC 265 ms
13,892 KB
testcase_52 AC 266 ms
13,888 KB
testcase_53 AC 264 ms
13,764 KB
testcase_54 AC 230 ms
13,888 KB
testcase_55 AC 222 ms
13,760 KB
testcase_56 AC 220 ms
13,892 KB
testcase_57 AC 214 ms
13,892 KB
testcase_58 AC 220 ms
13,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
AC=[False]*N
for i in range(N):
    if S[i]=="?":
        AC[i]=True
        S[i]="C"
cnt=0
a=0
for s in S:
    if s=="A":
        a+=1
    else:
        cnt+=a
ans=cnt
a=0
c=S.count("C")
for i in range(N):
    if AC[i]:
        S[i]="A"
        c-=1
        cnt-=a
        cnt+=c
    if S[i]=="A":
        a+=1
    else:
        c-=1
    ans=max(ans,cnt)
print(ans)
0