結果

問題 No.1894 Delete AB
ユーザー ytftytft
提出日時 2022-04-09 04:15:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 83,632 KB
最終ジャッジ日時 2024-11-28 23:08:32
合計ジャッジ時間 1,939 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,892 KB
testcase_01 AC 72 ms
75,856 KB
testcase_02 AC 68 ms
75,624 KB
testcase_03 AC 77 ms
76,480 KB
testcase_04 AC 80 ms
76,344 KB
testcase_05 AC 79 ms
76,212 KB
testcase_06 AC 83 ms
76,212 KB
testcase_07 AC 85 ms
76,180 KB
testcase_08 AC 84 ms
76,284 KB
testcase_09 AC 66 ms
75,948 KB
testcase_10 AC 71 ms
75,896 KB
testcase_11 AC 67 ms
75,332 KB
testcase_12 AC 69 ms
75,976 KB
testcase_13 AC 81 ms
83,632 KB
testcase_14 AC 65 ms
75,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def solve():
	N=int(input())
	S=input()
	ans=['A']
	for i in range(N-1,-1,-1):
		ans.append(S[i])
		if len(ans)>2 and ans[-3:]==['B','B','A']:
			ans.pop()
			ans.pop()
	print(''.join(ans[len(ans)-1:0:-1]))
T=int(input())
for i in range(T):
	solve()
0