/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 4ms 624.0 KiB
#3 Wrong Answer 2ms 532.0 KiB

Code

#include <stdio.h>
#include <string.h>

#define MAXN 200005

int main() {
    int a, b;

    scanf("%d",&a);

    while (a--) {
        int roy=0, emon=0; 
        scanf("%d",&b);

        
        char x[MAXN];
        scanf("%s", x);

        for (int i=0;i<b;i++) {
            if (x[i]=='1') {
                emon++;
            } 
            else {
                if (emon>roy) {
                    roy=emon;
                }
                emon=0;
            }
        }

        if (emon>roy) {
            roy=emon;
        }

        printf("%d\n",roy);
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1113 Fliping Game
Contest
Brain Booster #7
Language
C99 (GCC 13.2.0)
Submit At
2024-11-05 16:11:25
Judged At
2024-11-05 16:11:25
Judged By
Score
5
Total Time
4ms
Peak Memory
624.0 KiB