Wrong Answer
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-05 15:14:57
- Judged By
- Score
- 5
- Total Time
- 27ms
- Peak Memory
- 532.0 KiB