/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Accepted 4ms 532.0 KiB
#3 Accepted 2ms 324.0 KiB
#4 Accepted 2ms 576.0 KiB
#5 Accepted 2ms 532.0 KiB
#6 Accepted 3ms 696.0 KiB
#7 Accepted 3ms 832.0 KiB
#8 Accepted 6ms 744.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

/*#ifndef ONLINE_JUDGE
#include "DEBUG.h"
#define bug(...)           __f (#__VA_ARGS__, __VA_ARGS__)
#endif*/

#define first_in_out       ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define ll                 long long int
#define double             long double
#define min_heap           priority_queue <ll, vector<ll>, greater<ll>>
#define print(a)           for(auto x : a) cout << x << " ";
#define printpair(a)       for(auto x : a) cout << x.first << " " << x.second<<"\n";



void solve()
{
	int n;
	cin >> n;
	string s;
	cin >> s;
	int ans = 0;
	for (int i = 0; i < n; i++)
	{
		if (s[i] == '0')
		{
			int cnt = 0;

			while (i < n and s[i] == '0')
			{
				cnt++;
				i++;
			}
			ans = max(ans, cnt);
		}
	}

	cout << ans << "\n";
}


int main()
{
	first_in_out
	//clock_t z = clock();

	int t = 1;
	cin >> t;

	while (t--)
		solve();

	//cerr << "Run Time : " << ((double)(clock() - z) / CLOCKS_PER_SEC);
}

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:57:20
Judged At
2024-11-05 14:57:20
Judged By
Score
100
Total Time
6ms
Peak Memory
832.0 KiB