#include<bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
#define pb push_back
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define all(x) x.begin(),x.end()
#define allr(x) x.rbegin(),x.rend()
#define error1(x) cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v) for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;
void solve() {
ll n, sum = 0;
cin >> n;
for (int i = 0; i < n; i++) {
ll x; cin >> x;
sum += x;
}
__int128_t lo = 1, hi = 1e15, mid, ans = 0;
while(lo <= hi) {
mid = lo + hi >> 1;
if((mid * (mid + 1) >> 1) <= sum) {
lo = mid + 1;
ans = mid;
}
else hi = mid - 1;
}
cout << ll(ans + 1) << endl;
return;
}
signed main() {
ios::sync_with_stdio(false); cin.tie(0);
int tc = 1;
cin >> tc;
for (int t = 1; t <= tc; t++) {
// cout << "Case " << t << ": ";
solve();
}
return 0;
}