結果

問題 No.1894 Delete AB
ユーザー 👑 rin204rin204
提出日時 2023-05-22 06:59:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 78,092 KB
最終ジャッジ日時 2024-12-22 02:54:47
合計ジャッジ時間 3,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 74 ms
76,900 KB
testcase_02 AC 59 ms
73,984 KB
testcase_03 AC 176 ms
77,312 KB
testcase_04 AC 197 ms
78,092 KB
testcase_05 AC 156 ms
76,808 KB
testcase_06 AC 189 ms
76,800 KB
testcase_07 AC 142 ms
76,544 KB
testcase_08 AC 153 ms
76,928 KB
testcase_09 AC 103 ms
77,184 KB
testcase_10 AC 103 ms
76,800 KB
testcase_11 AC 78 ms
76,188 KB
testcase_12 AC 74 ms
76,288 KB
testcase_13 AC 63 ms
74,496 KB
testcase_14 AC 56 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    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="")


0