結果

問題 No.1894 Delete AB
ユーザー siganaisiganai
提出日時 2022-04-09 16:10:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 97,320 KB
最終ジャッジ日時 2024-11-29 15:30:56
合計ジャッジ時間 2,908 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=10**9+7

import sys
input=sys.stdin.readline

t = int(input())
for _ in range(t):
    n=int(input())
    s=input().rstrip()
    ans = []
    for i in range(n):
        if ans:
            if ans[-1] == 'A' and s[i] == 'B':
                if i + 1 < n and s[i+1] == 'B':
                    ans.pop()
                    while len(ans) >= 2 and ans[-2] == 'A' and ans[-1] == 'B':
                        ans.pop()
                        ans.pop()
                else:
                    ans.append(s[i])
            else:
                ans.append(s[i])
        else:
            ans.append(s[i])
    print(''.join(ans))
0