結果

問題 No.1894 Delete AB
ユーザー ntudantuda
提出日時 2022-11-17 20:45:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-19 07:30:06
合計ジャッジ時間 2,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 69 ms
11,136 KB
testcase_02 AC 65 ms
11,136 KB
testcase_03 AC 133 ms
10,624 KB
testcase_04 AC 139 ms
10,624 KB
testcase_05 AC 140 ms
10,624 KB
testcase_06 AC 141 ms
10,752 KB
testcase_07 AC 142 ms
10,624 KB
testcase_08 AC 137 ms
10,624 KB
testcase_09 AC 53 ms
10,624 KB
testcase_10 AC 55 ms
10,624 KB
testcase_11 AC 55 ms
10,624 KB
testcase_12 AC 50 ms
10,624 KB
testcase_13 AC 61 ms
11,136 KB
testcase_14 AC 56 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = input()
    ans = []
    NA, NB = 0, 0
    for s in reversed(S):
        if s == "A":
            if NB == 0:
                ans.append("A")
            elif NB == 1:
                ans.append("AB")
                NB -= 1
            else:
                NB -= 1
        else:
            NB += 1
    ans += ["B"] * NB
    ans.reverse()
    print("".join(ans))
0