#define int long long #define endl '\n' [[maybe_unused]]constint INF = 1e18 + 50, pi = 3;
intC(int n, int m){ if (n < m) return0; int ans = 1; for (int i = 1; i <= m; i++) ans = ans * (n - m + i) / i; return ans; }
voidsolve(){ int n; std::cin >> n; std::vector<int> a(n, 0ll); std::map<int, int> mp; for (int i = 0; i < n; i++) std::cin >> a[i], mp[a[i]]++; std::sort(a.begin(), a.end()); n = std::unique(a.begin(), a.end()) - a.begin(); int ans = C(mp[a[0]], 3), s = 0; for (int i = 1; i < n; i++) { int t = mp[a[i]]; s += mp[a[i - 1]]; ans += C(t, 3) + C(t, 2) * s; } std::cout << ans << endl; }
signedmain(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr), std::cout.tie(nullptr); int Lazy_boy_ = 1; std::cin >> Lazy_boy_; while (Lazy_boy_--) solve(); return0; }