結果

問題 No.1894 Delete AB
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-13 11:24:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,780 KB
最終ジャッジ日時 2024-06-02 10:40:03
合計ジャッジ時間 2,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 88 ms
11,008 KB
testcase_02 AC 85 ms
11,136 KB
testcase_03 AC 142 ms
10,752 KB
testcase_04 AC 152 ms
10,752 KB
testcase_05 AC 158 ms
10,880 KB
testcase_06 AC 157 ms
10,752 KB
testcase_07 AC 158 ms
10,752 KB
testcase_08 AC 167 ms
10,624 KB
testcase_09 AC 68 ms
10,752 KB
testcase_10 AC 75 ms
10,752 KB
testcase_11 AC 69 ms
10,880 KB
testcase_12 AC 71 ms
10,880 KB
testcase_13 AC 79 ms
11,884 KB
testcase_14 AC 83 ms
12,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n,s):
    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(*ans,sep='')
t=int(input())
for _ in range(t):
    n=int(input())
    s=input()
    solve(n,s)
0