結果

問題 No.1894 Delete AB
ユーザー Goltermann大和Goltermann大和
提出日時 2022-04-08 22:51:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 254 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 205,508 KB
最終ジャッジ日時 2024-11-28 13:43:09
合計ジャッジ時間 4,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 111 ms
10,624 KB
testcase_04 AC 112 ms
10,752 KB
testcase_05 AC 111 ms
10,624 KB
testcase_06 AC 112 ms
10,496 KB
testcase_07 AC 114 ms
10,624 KB
testcase_08 AC 120 ms
10,624 KB
testcase_09 AC 57 ms
10,752 KB
testcase_10 AC 64 ms
10,624 KB
testcase_11 AC 111 ms
11,648 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

def erase_ab(str):
    if "ABB" in str:
        s1 = str.replace("ABB","B",1)
        str = erase_ab(s1)
        return str
    else:
        return str


for i in range(t):
    n = int(input())
    s = input()
    print(erase_ab(s))  
0