結果

問題 No.1894 Delete AB
ユーザー tassei903tassei903
提出日時 2022-04-08 21:48:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 89,372 KB
最終ジャッジ日時 2024-11-28 12:28:38
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,952 KB
testcase_01 AC 85 ms
76,092 KB
testcase_02 AC 88 ms
76,024 KB
testcase_03 AC 91 ms
76,460 KB
testcase_04 AC 107 ms
76,752 KB
testcase_05 AC 90 ms
76,540 KB
testcase_06 AC 119 ms
76,992 KB
testcase_07 AC 87 ms
76,340 KB
testcase_08 AC 97 ms
76,384 KB
testcase_09 AC 83 ms
76,208 KB
testcase_10 AC 93 ms
76,244 KB
testcase_11 AC 83 ms
75,784 KB
testcase_12 AC 93 ms
75,920 KB
testcase_13 AC 94 ms
83,708 KB
testcase_14 AC 106 ms
89,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
t = ni()
for _ in range(t):
    n = ni()
    s = input()
    p = []
    for i in range(n):
        p.append(s[i])
        while len(p)>=3 and p[-3:] == ["A","B","B"]:
            p.pop()
            p.pop()
            p.pop()
            p.append("B")
        #print(p)
    print("".join(p))
0