#include using namespace std; #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #define rep(i,n) for (int i = 0; i < (n); ++i) typedef long long ll; typedef unsigned long long ull; using P=pair; using tp=tuple; const int INF=1001001001; const ll INFL=1e18; const int mod=998244353; void solve(){ int n; string s; cin>>n>>s; string ans; rep(i,n){ while(s[i]=='B'&&ans.size()>1&&ans.substr(ans.size()-2)=="AB"){ ans.pop_back(); ans.pop_back(); } ans+=s[i]; } cout<>t; rep(i,t){ solve(); } return 0; }