結果

問題 No.1894 Delete AB
ユーザー flippergoflippergo
提出日時 2024-10-15 08:31:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-15 08:31:38
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,208 KB
testcase_01 AC 58 ms
74,236 KB
testcase_02 AC 61 ms
72,772 KB
testcase_03 AC 126 ms
76,324 KB
testcase_04 AC 137 ms
76,544 KB
testcase_05 AC 111 ms
76,160 KB
testcase_06 AC 165 ms
76,488 KB
testcase_07 AC 118 ms
76,324 KB
testcase_08 AC 118 ms
76,288 KB
testcase_09 AC 85 ms
76,232 KB
testcase_10 AC 85 ms
76,044 KB
testcase_11 AC 64 ms
73,728 KB
testcase_12 AC 63 ms
73,856 KB
testcase_13 AC 58 ms
74,624 KB
testcase_14 AC 52 ms
72,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = input().strip()
    ans = []
    for i in range(N-1,-1,-1):
        a = S[i]
        if a=="A" and len(ans)>1 and ans[-1]=="B" and ans[-2]=="B":
            ans.pop()
        else:
            ans.append(a)
    print("".join(ans[::-1]))
0