結果

問題 No.1894 Delete AB
ユーザー hir355hir355
提出日時 2022-04-09 01:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-05-06 12:02:29
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,200 KB
testcase_01 AC 71 ms
76,288 KB
testcase_02 AC 65 ms
75,776 KB
testcase_03 AC 178 ms
77,824 KB
testcase_04 AC 217 ms
77,444 KB
testcase_05 AC 186 ms
77,568 KB
testcase_06 AC 210 ms
77,696 KB
testcase_07 AC 154 ms
76,936 KB
testcase_08 AC 143 ms
76,800 KB
testcase_09 AC 121 ms
76,160 KB
testcase_10 AC 129 ms
76,592 KB
testcase_11 AC 83 ms
75,776 KB
testcase_12 AC 82 ms
76,160 KB
testcase_13 AC 60 ms
76,032 KB
testcase_14 AC 73 ms
90,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    s = input()
    st = []
    for c in s:
        if c == 'B':
            while len(st) >= 2 and st[-1] == 'B' and st[-2] == 'A':
                st.pop()
                st.pop()
        st.append(c)
    print(*st, sep='')
0