結果

問題 No.1894 Delete AB
ユーザー ShirotsumeShirotsume
提出日時 2022-04-08 02:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-11-28 02:53:53
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,456 KB
testcase_01 AC 61 ms
73,856 KB
testcase_02 AC 56 ms
72,576 KB
testcase_03 AC 86 ms
76,032 KB
testcase_04 AC 121 ms
76,160 KB
testcase_05 AC 86 ms
75,776 KB
testcase_06 AC 121 ms
76,160 KB
testcase_07 AC 93 ms
76,160 KB
testcase_08 AC 96 ms
76,416 KB
testcase_09 AC 77 ms
75,648 KB
testcase_10 AC 79 ms
75,648 KB
testcase_11 AC 60 ms
73,216 KB
testcase_12 AC 61 ms
72,064 KB
testcase_13 AC 68 ms
83,456 KB
testcase_14 AC 52 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())


def solve(n, s):
    q = []
    for i in range(n - 1, -1, -1):
        q.append(s[i])
        if len(q) >= 3:
            if q[-1] + q[-2] == 'AB' and q[-3] == 'B':
                q.pop()
                q.pop()
    return ''.join(q[::-1])


for _ in range(ii()):
    n = ii()
    s = input()
    print(solve(n, s))
0