#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; const int INF=1001001001; const ll INFL=1e18; const int mod=998244353; void solve(){ int n; cin>>n; vectora(n); rep(i,n)cin>>a[i]; if(n==1||n&1){ cout<st; rep(i,n){ st.insert(a[i]); } int i=0; while(st.size()>1){ if(i%2==0){ auto x=st.begin();st.erase(x); auto y=st.begin();st.erase(y); st.insert((*x)*(*y)); } else{ auto x=prev(st.end());st.erase(x); auto y=prev(st.end());st.erase(y); st.insert(1); } i++; } cout<<*st.begin()<