結果

問題 No.709 優勝可能性
ユーザー GrayCoderGrayCoder
提出日時 2018-07-28 14:11:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 586 ms / 3,500 ms
コード長 805 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,216 KB
最終ジャッジ日時 2024-07-05 18:25:25
合計ジャッジ時間 7,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 262 ms
22,084 KB
testcase_11 AC 195 ms
18,468 KB
testcase_12 AC 402 ms
29,192 KB
testcase_13 AC 535 ms
25,088 KB
testcase_14 AC 484 ms
22,696 KB
testcase_15 AC 464 ms
21,448 KB
testcase_16 AC 505 ms
22,596 KB
testcase_17 AC 586 ms
34,368 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 490 ms
35,216 KB
testcase_21 AC 476 ms
35,084 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    N, M = map(int, input().split())
    R = stdin.read().splitlines()

    winner = [[] for _ in [0] * M]
    point = [0] * M
    player = defaultdict(int)
    for i, n in enumerate(R):
        m = list(map(int, n.split()))
        for j in range(M):
            if m[j] > point[j]:
                for k in winner[j]:
                    player[k] -= 1
                    if not player[k]:
                        player.pop(k)
                player[i] += 1
                point[j] = m[j]
                winner[j] = [i]
            elif m[j] == point[j]:
                winner[j].append(i)
                player[i] += 1
        print(len(player))

main()
0