結果

問題 No.1894 Delete AB
ユーザー 👑 rin204rin204
提出日時 2022-04-08 21:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-05-06 07:33:39
合計ジャッジ時間 2,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 74 ms
71,296 KB
testcase_02 AC 67 ms
67,200 KB
testcase_03 AC 178 ms
77,696 KB
testcase_04 AC 183 ms
77,184 KB
testcase_05 AC 178 ms
77,056 KB
testcase_06 AC 175 ms
77,312 KB
testcase_07 AC 177 ms
77,056 KB
testcase_08 AC 184 ms
76,672 KB
testcase_09 AC 120 ms
76,416 KB
testcase_10 AC 119 ms
75,904 KB
testcase_11 AC 83 ms
74,112 KB
testcase_12 AC 78 ms
71,808 KB
testcase_13 AC 68 ms
74,240 KB
testcase_14 AC 59 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    S = input()
    T = []
    for s in S[::-1]:
        if s == "B":
            T.append(s)
        elif len(T) >= 2 and T[-1] == "B" and T[-2] == "B":
            T.pop()
        else:
            T.append(s)
    print(*T[::-1], sep="")

for _ in range(int(input())):
    solve()
0