結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
64,612 KB
testcase_01 AC 87 ms
77,596 KB
testcase_02 AC 81 ms
77,676 KB
testcase_03 AC 109 ms
77,912 KB
testcase_04 AC 121 ms
78,240 KB
testcase_05 AC 91 ms
77,612 KB
testcase_06 AC 131 ms
78,620 KB
testcase_07 AC 104 ms
78,140 KB
testcase_08 AC 104 ms
77,808 KB
testcase_09 AC 98 ms
77,936 KB
testcase_10 AC 84 ms
77,516 KB
testcase_11 AC 87 ms
77,864 KB
testcase_12 AC 102 ms
77,860 KB
testcase_13 AC 69 ms
79,708 KB
testcase_14 AC 90 ms
97,320 KB
権限があれば一括ダウンロードができます

ソースコード

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