Accepted
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main() {
int t;
cin >> t;
while (t--){
ll n, c = 0, ans = 0;
string s;
cin >> n >> s;
s += '?';
for (int i = 0; i <= n; i++){
if (s[i] == '0') c++;
else ans = max(ans, c), c = 0;
}
cout << ans << endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1113 Fliping Game
- Contest
- Brain Booster #7
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-11-05 14:44:55
- Judged At
- 2024-11-05 14:44:55
- Judged By
- Score
- 100
- Total Time
- 24ms
- Peak Memory
- 788.0 KiB