結果

問題 No.1894 Delete AB
ユーザー lloyzlloyz
提出日時 2022-04-08 23:24:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 145,832 KB
最終ジャッジ日時 2024-11-28 14:35:30
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,000 KB
testcase_01 AC 94 ms
75,660 KB
testcase_02 AC 63 ms
75,512 KB
testcase_03 AC 106 ms
76,084 KB
testcase_04 AC 128 ms
77,008 KB
testcase_05 AC 98 ms
76,040 KB
testcase_06 AC 127 ms
76,640 KB
testcase_07 AC 102 ms
76,160 KB
testcase_08 AC 104 ms
76,228 KB
testcase_09 AC 78 ms
76,256 KB
testcase_10 AC 79 ms
76,132 KB
testcase_11 AC 61 ms
75,296 KB
testcase_12 AC 66 ms
75,480 KB
testcase_13 AC 1,538 ms
145,832 KB
testcase_14 AC 53 ms
75,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    S = input()
    ANS = ''
    for i in range(n - 1, -1, -1):
        ANS = S[i] + ANS
        if ANS[:2] == "AB":
            if len(ANS) > 2 and ANS[2] == 'B':
                ANS = ANS[2:]
    print(ANS)
0