/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 3ms 532.0 KiB
#2 Accepted 6ms 532.0 KiB
#3 Accepted 3ms 320.0 KiB
#4 Accepted 2ms 584.0 KiB
#5 Accepted 8ms 704.0 KiB
#6 Accepted 9ms 1.02 MiB
#7 Accepted 10ms 1.277 MiB
#8 Accepted 9ms 1.098 MiB

Code

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

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t;
    cin >> t;
    while (t--)
    {
        int n;
        vector <int> v;
        int cnt1 = 0;
        cin >> n;
        string s;
        cin >> s;
        for (int i = 0; i < n; i++)
        {
            if (s[i] == '0') s[i] = '1';
            else s[i] = '0';
        }
        for (int i = 0; i < n; i++)
        {
            if (s[i] == '1'){
                cnt1++;
                if (i == n-1)
                {
                    v.push_back(cnt1);
                }
            }
            else{
                v.push_back(cnt1);
                cnt1 = 0;
            }
        }
        cout << *max_element(v.begin(), v.end()) << "\n";

    }
    
}

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:15:40
Judged At
2024-11-05 15:15:40
Judged By
Score
100
Total Time
10ms
Peak Memory
1.277 MiB