結果

問題 No.709 優勝可能性
ユーザー rlangevinrlangevin
提出日時 2023-03-16 12:41:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 3,500 ms
コード長 738 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 103,788 KB
最終ジャッジ日時 2024-09-18 09:18:55
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,644 KB
testcase_01 AC 40 ms
52,432 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 36 ms
53,556 KB
testcase_04 AC 37 ms
52,012 KB
testcase_05 AC 36 ms
52,440 KB
testcase_06 AC 38 ms
52,732 KB
testcase_07 AC 39 ms
52,196 KB
testcase_08 AC 39 ms
53,820 KB
testcase_09 AC 34 ms
52,860 KB
testcase_10 AC 109 ms
77,408 KB
testcase_11 AC 96 ms
77,232 KB
testcase_12 AC 147 ms
77,680 KB
testcase_13 AC 166 ms
78,800 KB
testcase_14 AC 155 ms
78,872 KB
testcase_15 AC 162 ms
77,608 KB
testcase_16 AC 156 ms
79,728 KB
testcase_17 AC 181 ms
103,788 KB
testcase_18 AC 36 ms
52,736 KB
testcase_19 AC 33 ms
53,568 KB
testcase_20 AC 162 ms
78,716 KB
testcase_21 AC 164 ms
78,564 KB
testcase_22 AC 35 ms
52,628 KB
testcase_23 AC 33 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, M = map(int, readline().split())
maxv = list(map(int, readline().split()))
cnt = [0] * N
cnt[0] = M
ans = 1
L = [[0] for i in range(10)]
print(1)
for i in range(1, N):
    now = list(map(int, readline().split()))
    for j in range(M):
        if now[j] > maxv[j]:
            maxv[j] = now[j]
            while L[j]:
                v = L[j].pop()
                cnt[v] -= 1
                if cnt[v] == 0:
                    ans -= 1
            cnt[i] += 1
            if cnt[i] == 1:
                ans += 1
            L[j].append(i)
        elif now[j] == maxv[j]:
            L[j].append(i)
            cnt[i] += 1
            if cnt[i] == 1:
                ans += 1

    print(ans)
0