結果

問題 No.1894 Delete AB
ユーザー ikomaikoma
提出日時 2022-04-08 21:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 91,016 KB
最終ジャッジ日時 2024-11-28 12:25:16
合計ジャッジ時間 2,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 64 ms
75,740 KB
testcase_02 AC 63 ms
76,216 KB
testcase_03 AC 88 ms
76,188 KB
testcase_04 AC 107 ms
76,756 KB
testcase_05 AC 90 ms
76,428 KB
testcase_06 AC 112 ms
76,640 KB
testcase_07 AC 95 ms
76,300 KB
testcase_08 AC 81 ms
76,052 KB
testcase_09 AC 80 ms
76,180 KB
testcase_10 AC 77 ms
76,112 KB
testcase_11 AC 64 ms
75,544 KB
testcase_12 AC 76 ms
75,620 KB
testcase_13 AC 59 ms
76,576 KB
testcase_14 AC 71 ms
91,016 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