/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 15ms 3.0 MiB
#2 Wrong Answer 15ms 3.02 MiB

Code

from itertools import groupby
M, N = map(int, input("Enter Number of Columns: ").split())


def heatmap_input(column, name):
    record = []
    heatmap = []

    print(f"Enter {name}'s Streaks in 7 Rows:")
    for _ in range(7):
        query = list(map(int, input().split()))
        record.append(query)

    for i in range(column):
        for j in range(7):
            heatmap.append(record[j][i])

    return heatmap


def max_streak(heatmap):
    streak = []
    max_len = 0

    for key, group in groupby(heatmap, lambda x: x == 0):
        group = list(group)
        if not key and len(group) > max_len:
            streak = group
            max_len = len(group)

    return streak


mahfuj = max_streak(heatmap_input(M, 'Mahfuj'))
nayon = max_streak(heatmap_input(N, 'Nayon'))

if sum(mahfuj) > sum(nayon):
    print("Mahfuj is the boss", end="")
elif sum(mahfuj) < sum(nayon):
    print("Nayon is the boss", end="")
else:
    if len(mahfuj) > len(nayon):
        print("Mahfuj is the boss", end="")
    elif len(mahfuj) < len(nayon):
        print("Nayon is the boss", end="")
    else:
        print("No one is the boss", end="")

Information

Submit By
Type
Submission
Problem
P1017 Solution streak
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-02 07:01:05
Judged At
2024-11-11 03:44:40
Judged By
Score
0
Total Time
15ms
Peak Memory
3.02 MiB