/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 16ms 548.0 KiB
#3 Wrong Answer 5ms 540.0 KiB

Code

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

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n;
        cin >> n;
        string s;
        cin >> s;


        int start = 10;
        int end = 0;
        int max_consecutive = 0;


        for (int i = 0; i < n; i++) {
            if (s[i] == '1') {
                start = min(start, i);
                end = max(end, i);
                max_consecutive = max(max_consecutive, end - start + 1);
            }
        }


        cout << max_consecutive << endl;
    }
    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:23:24
Judged At
2024-11-05 15:23:24
Judged By
Score
5
Total Time
16ms
Peak Memory
548.0 KiB