/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 25ms 552.0 KiB
#3 Wrong Answer 6ms 328.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
int main(){
    int T; cin>>T; while(T--){
        int N; string S;
        cin>>N>>S;
       int  count = 0;
       int mx_count = 0;
       for(int i = 0; i<N; i++){
        if(S[i]=='1'){ count++;
        mx_count = max(count,mx_count);
        }
        else if(S[i]=='0') count = 0;
       }
       cout<<mx_count<<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 15:14:57
Judged At
2024-11-11 02:31:08
Judged By
Score
5
Total Time
25ms
Peak Memory
552.0 KiB