#include <bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define arr_for(n) for (int i = 0; i < n; i++)
#define arrj_for(n) for (int j = 0; j < n; j++)
#define rev_arr_for(n) for (int i = n - 1; i >= 0; i--)
#define for_one(n) for (int i = 1; i <= n; i++)
#define pf push_front
#define ppf pop_front
#define pb push_back
#define ppb pop_back
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define newl "\n"
using namespace std;
void solve() {
ll n;
cin >> n;
string str;
cin >> str;
int cnt = 0, maxx = 0;
for (int i = 0; i < str.length(); i++) {
if (str[i] == '0' and str[i + 1] == '0')
cnt++;
else
cnt = 0;
maxx = max(maxx, cnt);
}
cout << (count(all(str), '0') == 0 ? 0 : maxx + 1) << newl;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
#ifdef ONPC
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int testcase = 1;
cin >> testcase;
while (testcase--) {
solve();
}
return 0;
}