Accepted
Code
#define _GLIBCXX_FILESYSTEM
#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve() {
int n;
string s;
cin >> n >> s;
int cnt = 0, ans = 0;
for(int i = 0; i < n; i++) {
if(s[i] == '0') cnt++;
else {
ans = max(ans,cnt);
cnt = 0;
}
}
ans = max(ans, cnt);
cout << ans << '\n';
return;
}
int32_t main() {
ios_base::sync_with_stdio(false);cin.tie(NULL);
int tc = 1;
cin >> tc;
for(int kase = 1; kase <= tc; kase++) {
//cout << "Case " << kase << ": ";
solve();
}
return 0;
}
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:43:59
- Judged At
- 2024-11-05 14:43:59
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 936.0 KiB