結果

問題 No.1894 Delete AB
ユーザー manta1130manta1130
提出日時 2022-04-15 17:33:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,120 KB
最終ジャッジ日時 2024-06-07 01:40:31
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 54 ms
12,512 KB
testcase_02 AC 57 ms
12,388 KB
testcase_03 AC 120 ms
10,624 KB
testcase_04 AC 122 ms
10,624 KB
testcase_05 AC 124 ms
10,624 KB
testcase_06 AC 124 ms
10,752 KB
testcase_07 AC 124 ms
10,624 KB
testcase_08 AC 128 ms
10,624 KB
testcase_09 AC 49 ms
10,624 KB
testcase_10 AC 53 ms
10,752 KB
testcase_11 AC 48 ms
10,624 KB
testcase_12 AC 49 ms
10,752 KB
testcase_13 AC 53 ms
13,120 KB
testcase_14 AC 54 ms
12,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    s = list(input())

    stack = ['P', 'P']
    for idx in reversed(range(n)):
        if s[idx] == 'B':
            stack.append(s[idx])
        else:
            if stack[-1] != 'B':
                stack.append(s[idx])
            elif stack[-2] == 'B':
                del stack[-1]
            else:
                stack.append(s[idx])
        # print(stack)
    stack = stack[::-1]
    del(stack[-2:])
    print(''.join(stack))


t = int(input())
for i in range(t):
    solve()
0