結果

問題 No.1894 Delete AB
ユーザー chineristACchineristAC
提出日時 2022-04-08 23:13:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-05-06 08:58:45
合計ジャッジ時間 2,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,424 KB
testcase_01 AC 72 ms
77,184 KB
testcase_02 AC 69 ms
76,928 KB
testcase_03 AC 91 ms
77,184 KB
testcase_04 AC 105 ms
77,696 KB
testcase_05 AC 90 ms
77,312 KB
testcase_06 AC 113 ms
77,696 KB
testcase_07 AC 94 ms
77,440 KB
testcase_08 AC 94 ms
77,440 KB
testcase_09 AC 86 ms
77,184 KB
testcase_10 AC 85 ms
77,184 KB
testcase_11 AC 77 ms
76,416 KB
testcase_12 AC 75 ms
76,544 KB
testcase_13 AC 68 ms
78,464 KB
testcase_14 AC 68 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

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

for _ in range(int(input())):
    N = int(input())
    S = input()

    res = []
    for s in S[::-1]:
        if s=="B":
            res.append(s)
        else:
            if res and res[-1]=="B":
                if len(res) >= 2 and res[-2]=="B":
                    res.pop()
                else:
                    res.append("A")
            else:
                res.append("A")
    
    res = res[::-1]
    print("".join(res))
0