結果

問題 No.1894 Delete AB
ユーザー HydruHydru
提出日時 2022-04-08 22:12:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-05-06 07:44:15
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 62 ms
77,952 KB
testcase_14 AC 54 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = list(input())
    ans = []
    A_count = 0
    B_count = 0
    for i in range(-1,-(N+1),-1):
        if S[i] == "B":
            B_count+=1
            if i!=-1:
                if ans[-1]=="B":
                    A_count = 0
            ans.append("B")
        else:
            if B_count == 0:
                ans.append("A")
                continue
            if B_count>A_count+1 and ans[-1]=="B":
                ans.pop()
                B_count-=1
            else:
                ans.append("A")
                A_count+=1
    print("".join(reversed(ans)))
0