結果

問題 No.1894 Delete AB
ユーザー tamatotamato
提出日時 2022-04-08 21:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,504 KB
最終ジャッジ日時 2024-05-06 07:24:40
合計ジャッジ時間 2,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 103 ms
75,776 KB
testcase_02 AC 108 ms
75,904 KB
testcase_03 AC 110 ms
76,160 KB
testcase_04 AC 94 ms
76,032 KB
testcase_05 AC 95 ms
76,032 KB
testcase_06 AC 102 ms
76,800 KB
testcase_07 AC 94 ms
76,032 KB
testcase_08 AC 103 ms
76,160 KB
testcase_09 AC 95 ms
76,160 KB
testcase_10 AC 100 ms
76,032 KB
testcase_11 AC 95 ms
75,904 KB
testcase_12 AC 88 ms
75,776 KB
testcase_13 AC 102 ms
83,584 KB
testcase_14 AC 111 ms
89,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N = int(input())
        S = input().rstrip('\n')

        T = []
        for s in S:
            T.append(s)
            while len(T) >= 3:
                if T[-3:] == ["A", "B", "B"]:
                    T.pop()
                    T.pop()
                    T.pop()
                    T.append("B")
                else:
                    break
        print("".join(T))


if __name__ == '__main__':
    main()
0