結果

問題 No.1894 Delete AB
ユーザー rlangevinrlangevin
提出日時 2023-01-18 01:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-06-11 04:57:13
合計ジャッジ時間 2,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 58 ms
76,416 KB
testcase_02 AC 54 ms
76,032 KB
testcase_03 AC 111 ms
75,968 KB
testcase_04 AC 140 ms
77,304 KB
testcase_05 AC 102 ms
76,120 KB
testcase_06 AC 140 ms
76,600 KB
testcase_07 AC 108 ms
76,148 KB
testcase_08 AC 108 ms
76,032 KB
testcase_09 AC 75 ms
76,544 KB
testcase_10 AC 74 ms
76,020 KB
testcase_11 AC 60 ms
75,516 KB
testcase_12 AC 59 ms
76,544 KB
testcase_13 AC 57 ms
80,512 KB
testcase_14 AC 51 ms
75,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = list(input())
    stack = ["$", "$"]
    S.reverse()
    for s in S:
        if s == "B":
            stack.append(s)
        else:
            if stack[-1] == stack[-2] == "B":
                stack.pop()
            else:
                stack.append(s)
    stack.reverse()
    stack.pop()
    stack.pop()
    print("".join(stack))
0