/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 440.0 KiB
#2 Wrong Answer 4ms 576.0 KiB
#3 Wrong Answer 2ms 320.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define MOD 1000000007
#define test int t;cin>>t;while(t--)
#define pb push_back
#define vi vector<int>
#define vl vector<ll>
#define F first
#define S second
#define yes cout<<"YES"<<'\n';
#define no cout<<"NO"<<'\n';
#define endl "\n"
#define all(v) v.begin(),v.end()
#define print(v) for(auto it:v) cout<<it<<" "; cout<<endl;
#define print2(pr) for(int i=pr.size()-1;i>=0;i--)cout<<pr[i];cout<<endl;
#define srt(v) sort(v.begin(),v.end());
#define rsrt(v) sort(v.rbegin(),v.rend());
#define rvs(v) reverse(v.begin(),v.end());
#define cinv(v) for(auto &it:v)cin>>it;
#define rall(v) v.rbegin(),v.rend()
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) (a*b)/gcd(a,b)
#define PI 2*acos(0.0)
#define pr pair<int,int>
#define Tasrik ios_base::sync_with_stdio(0);  cin.tie(0); cout.tie(0);

void abrakadabra()
{
    ll n;
    string s;
    cin>>n>>s;
    ll ans=0 , c=0;
    for(int i=0; i<n; i++)
    {
        if(s[i]=='1')
            c++;
        else{
            ans=max(ans,c);
            c=0;
        }
    }

    cout<<max(ans,c)<<endl;

}

int main ()
{
    Tasrik;
    int cs=1;
    test
    {
//        cout << "Case " <<cs << ": ";
//        cs++;
        abrakadabra();
    }

    return 0;
}


Information

Submit By
Type
Submission
Problem
P1113 Fliping Game
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-07 18:49:11
Judged At
2024-11-11 02:23:05
Judged By
Score
5
Total Time
4ms
Peak Memory
576.0 KiB