結果

問題 No.709 優勝可能性
ユーザー maspymaspy
提出日時 2020-02-29 19:50:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 3,500 ms
コード長 1,082 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,964 KB
最終ジャッジ日時 2024-10-13 20:16:17
合計ジャッジ時間 5,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 122 ms
88,704 KB
testcase_11 AC 100 ms
87,552 KB
testcase_12 AC 157 ms
92,912 KB
testcase_13 AC 193 ms
90,240 KB
testcase_14 AC 176 ms
89,600 KB
testcase_15 AC 178 ms
88,448 KB
testcase_16 AC 186 ms
88,224 KB
testcase_17 AC 184 ms
108,964 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 176 ms
96,052 KB
testcase_21 AC 177 ms
95,916 KB
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 36 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
N, M = map(int, readline().split())
querys = readlines()


# %%
best_param_cnt = [0] * N
best_param = [0] * M
best_param_member = [[] for _ in range(M)]
can_win_cnt = 0


# %%
def solve():
    global can_win_cnt
    for n, line in enumerate(querys):
        R = map(int, line.split())
        for m, x in enumerate(R):
            if x < best_param[m]:
                continue
            if x == best_param[m]:
                best_param_member[m].append(n)
                best_param_cnt[n] += 1
                continue
            best_param[m] = x
            best_param_cnt[n] += 1
            for k in best_param_member[m]:
                best_param_cnt[k] -= 1
                if best_param_cnt[k] == 0:
                    can_win_cnt -= 1
            best_param_member[m] = [n]
        can_win_cnt += (best_param_cnt[n] > 0)
        yield can_win_cnt


# %%
answers = solve()
print('\n'.join(map(str, answers)))


# %%
0