#include <iostream>
#include <string>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
string S;
cin >> S;
// Count the total number of 1s and 0s
int oneCount = 0, zeroCount = 0;
for (char c : S) {
if (c == '1') {
oneCount++;
} else {
zeroCount++;
}
}
// If there are more 1s, Roy can always win by flipping 0s to 1s
// If there are more 0s or equal, Emon can always prevent a long streak of 1s
if (oneCount > zeroCount) {
cout << oneCount << endl;
} else {
cout << min(oneCount, 1) << endl;
}
}
return 0;
}