結果

問題 No.1894 Delete AB
ユーザー ShirotsumeShirotsume
提出日時 2022-04-08 00:15:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 528 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 145,280 KB
最終ジャッジ日時 2024-11-28 02:38:49
合計ジャッジ時間 15,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,704 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 111 ms
81,152 KB
testcase_04 AC 110 ms
145,280 KB
testcase_05 AC 109 ms
81,024 KB
testcase_06 AC 101 ms
75,520 KB
testcase_07 AC 105 ms
75,648 KB
testcase_08 AC 110 ms
75,904 KB
testcase_09 AC 91 ms
75,264 KB
testcase_10 AC 98 ms
75,392 KB
testcase_11 AC 138 ms
75,136 KB
testcase_12 AC 512 ms
76,544 KB
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())

def solve():
    n = ii()
    s = list(input())

    while True:
        flag = True
        for i in range(len(s) - 2):
            if s[i] == 'A' and s[i + 1] == 'B' and s[i + 2] == 'B':
                s.pop(i)
                s.pop(i)
                flag = False
                break
        if flag:
            break
    print(''.join(s))

for _ in range(ii()):
    solve()
0