結果

問題 No.709 優勝可能性
ユーザー H3PO4H3PO4
提出日時 2020-12-09 21:36:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 3,500 ms
コード長 612 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,140 KB
最終ジャッジ日時 2024-09-19 04:18:22
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 33 ms
52,260 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 33 ms
52,352 KB
testcase_10 AC 107 ms
77,388 KB
testcase_11 AC 88 ms
77,272 KB
testcase_12 AC 133 ms
77,560 KB
testcase_13 AC 160 ms
78,080 KB
testcase_14 AC 148 ms
78,208 KB
testcase_15 AC 142 ms
77,696 KB
testcase_16 AC 151 ms
80,996 KB
testcase_17 AC 163 ms
100,140 KB
testcase_18 AC 34 ms
52,224 KB
testcase_19 AC 33 ms
52,608 KB
testcase_20 AC 153 ms
77,568 KB
testcase_21 AC 158 ms
77,568 KB
testcase_22 AC 34 ms
52,068 KB
testcase_23 AC 33 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N, M = map(int, input().split())
max_param = [0] * M
winners = [[] for _ in range(M)]
people = [0] * N
ans = 0
for i in range(N):
    R = map(int, input().split())
    for j, r in enumerate(R):
        if max_param[j] < r:
            for x in winners[j]:
                people[x] -= 1
                if not people[x]:
                    ans -= 1
            winners[j].clear()

            max_param[j] = r

        if max_param[j] == r:
            if not people[i]:
                ans += 1
            people[i] += 1

            winners[j].append(i)
    print(ans)
0