結果

問題 No.1894 Delete AB
ユーザー Goltermann大和Goltermann大和
提出日時 2022-04-08 22:48:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 254 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 205,508 KB
最終ジャッジ日時 2024-05-06 08:28:19
合計ジャッジ時間 4,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 99 ms
10,624 KB
testcase_04 AC 115 ms
10,496 KB
testcase_05 AC 130 ms
10,752 KB
testcase_06 AC 103 ms
10,624 KB
testcase_07 AC 103 ms
10,624 KB
testcase_08 AC 106 ms
10,496 KB
testcase_09 AC 52 ms
10,624 KB
testcase_10 AC 59 ms
10,624 KB
testcase_11 AC 97 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