結果

問題 No.1894 Delete AB
ユーザー hir355hir355
提出日時 2022-04-09 01:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 90,892 KB
最終ジャッジ日時 2024-11-28 18:27:27
合計ジャッジ時間 3,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,220 KB
testcase_01 AC 69 ms
76,316 KB
testcase_02 AC 62 ms
75,608 KB
testcase_03 AC 173 ms
77,284 KB
testcase_04 AC 199 ms
77,868 KB
testcase_05 AC 169 ms
77,524 KB
testcase_06 AC 216 ms
77,880 KB
testcase_07 AC 153 ms
76,544 KB
testcase_08 AC 142 ms
76,856 KB
testcase_09 AC 108 ms
76,332 KB
testcase_10 AC 118 ms
76,412 KB
testcase_11 AC 76 ms
75,944 KB
testcase_12 AC 82 ms
75,928 KB
testcase_13 AC 59 ms
77,092 KB
testcase_14 AC 71 ms
90,892 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