結果

問題 No.1894 Delete AB
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-14 10:47:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,540 KB
最終ジャッジ日時 2024-12-24 05:54:24
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 120 ms
12,516 KB
testcase_02 AC 116 ms
12,516 KB
testcase_03 AC 136 ms
12,160 KB
testcase_04 AC 143 ms
12,160 KB
testcase_05 AC 148 ms
12,160 KB
testcase_06 AC 148 ms
12,288 KB
testcase_07 AC 151 ms
12,160 KB
testcase_08 AC 162 ms
12,160 KB
testcase_09 AC 81 ms
11,136 KB
testcase_10 AC 101 ms
11,008 KB
testcase_11 AC 91 ms
11,008 KB
testcase_12 AC 96 ms
11,136 KB
testcase_13 AC 121 ms
13,540 KB
testcase_14 AC 93 ms
12,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
ns=[]
for _ in range(t):
    n=int(input())
    s=input()
    ns.append([n,s])
for n,s in ns:
    # Bの前にあるABは全て消す
    if n<=2:
        print(s)
        continue
    ans=[]
    s=list(s)
    i=0
    ans.append(s.pop())
    ans.append(s.pop())
    while s:
        if len(ans)>=2 and ans[-1]=="B" and ans[-2]=="B" and s[-1]=="A":
            s.pop()
            ans.pop()
        else:
            ans.append(s.pop())
    ans.reverse()
    print("".join(ans))
0