結果

問題 No.2276 I Want AC
ユーザー 👑 KazunKazun
提出日時 2023-04-21 21:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-11-06 15:11:13
合計ジャッジ時間 5,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 56
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    S=input()

    A_cnt=S.count("A")
    C_cnt=S.count("C")
    Q_cnt=S.count("?")

    score=0
    rc=C_cnt+Q_cnt
    k=rc
    for i in range(N):
        if S[i]=="A":
            score+=k
        else:
            k-=1

    ans=score
    la=0
    for i in range(N):
        if S[i]=="A":
            la+=1
        elif S[i]=="C":
            rc-=1
        else:
            rc-=1
            score+=rc-la
            la+=1

            ans=max(ans, score)
    return ans

#==================================================
print(solve())
0