/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Wrong Answer 18ms 548.0 KiB
#3 Wrong Answer 5ms 580.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 maxConsecutive = 0;
        int currentConsecutive = 0;

        for (int i = 0; i < n; i++) {
            if (s[i] == '1') {
                currentConsecutive++;
                maxConsecutive = max(maxConsecutive, currentConsecutive);
            } else {
                currentConsecutive = 0;
            }
        }

        cout << maxConsecutive << endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1113 Fliping Game
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-06 13:55:07
Judged At
2024-11-06 13:55:07
Judged By
Score
5
Total Time
18ms
Peak Memory
580.0 KiB