結果

問題 No.1894 Delete AB
ユーザー ikomaikoma
提出日時 2022-04-08 21:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-05-06 07:18:35
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 76 ms
75,776 KB
testcase_02 AC 68 ms
75,776 KB
testcase_03 AC 91 ms
76,160 KB
testcase_04 AC 118 ms
77,056 KB
testcase_05 AC 93 ms
76,288 KB
testcase_06 AC 109 ms
76,800 KB
testcase_07 AC 93 ms
76,416 KB
testcase_08 AC 82 ms
76,032 KB
testcase_09 AC 83 ms
76,032 KB
testcase_10 AC 78 ms
76,032 KB
testcase_11 AC 67 ms
75,776 KB
testcase_12 AC 90 ms
75,904 KB
testcase_13 AC 60 ms
76,288 KB
testcase_14 AC 75 ms
90,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for t in range(T):
    N=int(input())
    S=input().strip()
    stack = []
    for s in S:
        if s=="B":
            while len(stack)>=2:
                if stack[-2]=="A" and stack[-1]=="B":
                    stack.pop()
                    stack.pop()
                else:break
        stack.append(s)
    print("".join(stack))
0