//#pragma GCC target("avx2") //#pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops") #include using namespace std; using ll = long long; using pii = pair; using pll = pair; using pli = pair; #define MOD 998244353 //#define MOD 1000000007 #define el '\n' #define El '\n' #define YESNO(x) ((x) ? "Yes" : "No") #define YES YESNO(true) #define NO YESNO(false) #define EXIT_ANS(x) {cout << (x) << '\n'; return;} template void inline SORT(vector &v){sort(v.begin(),v.end()); return;} template void inline REV(vector &v){reverse(v.begin(),v.end()); return;} template void inline VEC_UNIQ(vector &v){sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); return;} template T inline MAX(vector &v){return *max_element(v.begin(),v.end());} template T inline MIN(vector &v){return *min_element(v.begin(),v.end());} template T inline SUM(vector &v){T ans = 0; for(int i = 0; i < (int)v.size(); i++)ans += v[i]; return ans;} template void inline DEC(vector &v){for(int i = 0; i < (int)v.size(); i++)v[i]--; return;} template void inline INC(vector &v){for(int i = 0; i < (int)v.size(); i++)v[i]++; return;} void inline TEST(void){cerr << "TEST" << endl; return;} template bool inline chmin(T &x,T y){ if(x > y){ x = y; return true; } return false; } template bool inline chmax(T &x,T y){ if(x < y){ x = y; return true; } return false; } template vector inline get_vec(int n){ vector ans(n); for(int i = 0; i < n; i++)cin >> ans[i]; return ans; } template void inline print_vec(vector &vec,bool kaigyou = false){ int n = (int)vec.size(); for(int i = 0; i < n; i++){ cout << vec[i]; if(kaigyou || i == n - 1)cout << '\n'; else cout << ' '; } if(!n)cout << '\n'; return; } template void inline debug_vec(vector &vec,bool kaigyou = false){ int n = (int)vec.size(); for(int i = 0; i < n; i++){ cerr << vec[i]; if(kaigyou || i == n - 1)cerr << '\n'; else cerr << ' '; } if(!n)cerr << '\n'; return; } vector> inline get_graph(int n,int m = -1,bool direct = false){ if(m == -1)m = n - 1; vector> g(n); while(m--){ int u,v; cin >> u >> v; u--; v--; g[u].push_back(v); if(!direct)g[v].push_back(u); } return g; } template vector>> inline get_weighted_graph(int n,int m = -1,bool direct = false){ if(m == -1)m = n - 1; vector>> g(n); while(m--){ int u,v; cin >> u >> v; u--; v--; ll w; cin >> w; g[u].push_back(pair(w,v)); if(!direct)g[v].push_back(pair(w,u)); } return g; } #define MULTI_TEST_CASE true void solve(void){ //問題を見たらまず「この問題設定から言えること」をいっぱい言う //よりシンプルな問題に言い換えられたら、言い換えた先の問題を自然言語ではっきりと書く //複数の解法のアイデアを思いついた時は全部メモしておく //g++ -D_GLIBCXX_DEBUG -Wall -O2 a.cpp -o o int n; cin >> n; vector a = get_vec(n); SORT(a); vector plus,minus,zero; for(int i = 0; i < n; i++){ if(a[i] > 0)plus.push_back(a[i]); if(a[i] < 0)minus.push_back(a[i]); if(a[i] == 0)zero.push_back(a[i]); } vector b; int m = (int)plus.size(); for(int i = 0; i < m; i++){ if(i <= 1 || (m - i) <= 1)b.push_back(plus[i]); } m = (int)minus.size(); for(int i = 0; i < m; i++){ if(i <= 1 || (m - i) <= 1)b.push_back(minus[i]); } if((int)zero.size() >= 1)b.push_back(0); if((int)zero.size() >= 2)b.push_back(0); SORT(b); m = (int)b.size(); ll ans = LLONG_MIN; for(int i = 0; i < m; i++){ for(int j = i + 1; j < m; j++){ // if(n == 2 && j >= 2)break; // if(n == 3 && (i == 2 || j == 2))break; //b[i] -> b[j] ll temp = b[i] * b[j]; for(int l = 0; l < n; l++){ ll x = max(b[i] * a[l],a[l] * b[j]); chmin(temp,x); } //cerr << b[i] << ' ' << b[j] << ' ' << temp << el; chmax(ans,temp); } } cout << ans << el; return; } void calc(void){ return; } signed main(void){ cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if(MULTI_TEST_CASE)cin >> t; while(t--){ solve(); } return 0; }