#include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long LL; const LL MAX = (LL)1e5 + 5; const LL mod=1e9+7; LL n; LL h[310]; int main() { ios_base::sync_with_stdio(0); int T; cin>>T; while(T--) { cin>>n; for(LL i=1;i<=n;i++) { cin>>h[i]; } sort(h+1,h+1+n); double x=0; for(int i=1;i<=n;i++) { for(int j=i+1;j<=n;j++){ if(h[j]>h[i]) { x+=(n-j+1); break; } } } double y=(n)*(n-1); // h[0]=-10; // for(int i=1;i<=n;i++) // { // if(h[i]==h[i-1]) continue; // for(int j=1;j<=n;j++) // { // if(i==j) continue; // if(h[j]==h[j-1]&&j-1!=i) continue; // y++; // } // } cout<