#include using namespace std; using ll = long long; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b void vprint(T &V){ for(auto v : V){ cout << v << " "; } cout << endl; } void A_win(){ p("A"); exit(0); } void B_win(){ p("B"); exit(0); } int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N; cin >> N; vector A(N); FOR(i, 0, N){ cin >> A.at(i); } sort(ALL(A)); ll not_one_count = 0; for(ll a : A){ if(a!=1){ not_one_count++; } } if(not_one_count==1 && A.back()==2 && N%2==0){ A_win(); } // 全部1 if(not_one_count==0){ if(N%2==0){ B_win(); }else{ A_win(); } } else{ B_win(); } return 0; }