結果

問題 No.1894 Delete AB
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-08 21:31:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-05-06 07:05:13
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 71 ms
76,288 KB
testcase_02 AC 66 ms
75,776 KB
testcase_03 AC 167 ms
77,440 KB
testcase_04 AC 188 ms
77,568 KB
testcase_05 AC 166 ms
77,184 KB
testcase_06 AC 209 ms
78,080 KB
testcase_07 AC 152 ms
76,556 KB
testcase_08 AC 144 ms
77,184 KB
testcase_09 AC 106 ms
76,416 KB
testcase_10 AC 105 ms
76,416 KB
testcase_11 AC 80 ms
75,904 KB
testcase_12 AC 83 ms
76,160 KB
testcase_13 AC 60 ms
76,288 KB
testcase_14 AC 73 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    S = input()
    l = []
    for s in S:
        if s == "A":
            l.append(s)
            continue

        if len(l) < 2:
            l.append(s)
            continue
        # print(l)
        while len(l) >= 2:
            if l[-1] == "B" and l[-2] == "A":
                l.pop()
                l.pop()
            else:
                break
        l.append(s)
    # print("ans")
    print(*l,sep="")
0