Accepted
Code
#include <bits/stdc++.h>
#define ll long long
#define pub push_back
#define fast \
ios_base::sync_with_stdio(0); \
cin.tie(0);
using namespace std;
void solve()
{
int n;
cin >> n;
string s;
cin >> s;
int ans = 0;
int cnt = 0;
for (char c : s)
{
if (c == '0')
cnt++;
else
{
ans = max(ans, cnt);
cnt = 0;
}
}
ans = max(ans, cnt);
cout << ans << endl;
}
int main()
{
fast;
ll t;
cin >> t;
while (t--)
{
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:38:24
- Judged At
- 2024-11-05 14:38:24
- Judged By
- Score
- 100
- Total Time
- 20ms
- Peak Memory
- 788.0 KiB