Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define ll long long
#define INF LLONG_MIN
void solve() {
int t;
cin >> t;
while (t--) {
int n;
string s;
cin >> n >> s;
int ans=1,mx=1;
for(int i=1;i<n;i++)
{
if(s[i]==s[i-1])
{
ans++;
}
else
{
mx=max(mx,ans);
ans=1;
}
}
mx=max(mx,ans);
cout<<mx<<endl;
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
// #ifndef ONLINE_JUDGE
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
// #endif
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 15:11:32
- Judged At
- 2024-11-05 15:11:32
- Judged By
- Score
- 5
- Total Time
- 12ms
- Peak Memory
- 572.0 KiB