結果

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

テストケース

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