結果

問題 No.1894 Delete AB
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-04-08 21:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 85,832 KB
最終ジャッジ日時 2024-11-28 12:14:10
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,260 KB
testcase_01 AC 75 ms
85,624 KB
testcase_02 AC 76 ms
85,524 KB
testcase_03 AC 131 ms
77,364 KB
testcase_04 AC 162 ms
77,908 KB
testcase_05 AC 117 ms
76,728 KB
testcase_06 AC 167 ms
77,580 KB
testcase_07 AC 127 ms
76,848 KB
testcase_08 AC 122 ms
76,980 KB
testcase_09 AC 98 ms
77,540 KB
testcase_10 AC 99 ms
77,292 KB
testcase_11 AC 77 ms
76,376 KB
testcase_12 AC 78 ms
78,680 KB
testcase_13 AC 77 ms
85,832 KB
testcase_14 AC 57 ms
74,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
for _ in range(int(input())):
    n = int(input())
    s = list(input())
    res = deque()
    for i in range(n-1,-1,-1):
        if s[i] == "A":
            if len(res) >= 2:
                a,b = res.pop(),res.pop()
                if a == b == "B":
                    res.append("B")
                else:
                    res.append(b)
                    res.append(a)
                    res.append(s[i])
            else:
                res.append(s[i])
        else:
            res.append(s[i])

    res = list(res)[::-1]
    print("".join(res))
0