結果

問題 No.709 優勝可能性
ユーザー roarisroaris
提出日時 2021-06-02 11:54:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 3,500 ms
コード長 751 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 105,428 KB
最終ジャッジ日時 2024-11-14 15:26:13
合計ジャッジ時間 5,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,492 KB
testcase_01 AC 43 ms
55,300 KB
testcase_02 AC 45 ms
53,496 KB
testcase_03 AC 41 ms
54,680 KB
testcase_04 AC 40 ms
53,688 KB
testcase_05 AC 41 ms
54,652 KB
testcase_06 AC 41 ms
54,592 KB
testcase_07 AC 41 ms
54,364 KB
testcase_08 AC 40 ms
54,964 KB
testcase_09 AC 41 ms
54,648 KB
testcase_10 AC 119 ms
78,000 KB
testcase_11 AC 105 ms
78,084 KB
testcase_12 AC 160 ms
78,116 KB
testcase_13 AC 226 ms
98,160 KB
testcase_14 AC 180 ms
80,828 KB
testcase_15 AC 180 ms
79,088 KB
testcase_16 AC 189 ms
82,704 KB
testcase_17 AC 206 ms
105,428 KB
testcase_18 AC 40 ms
54,648 KB
testcase_19 AC 41 ms
54,424 KB
testcase_20 AC 175 ms
79,272 KB
testcase_21 AC 177 ms
79,524 KB
testcase_22 AC 45 ms
54,552 KB
testcase_23 AC 43 ms
54,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
Ma = [0]*M
cnt = [0]*N
ans = 0
idx = [defaultdict(list) for _ in range(M)]

for i in range(N):
    R = list(map(int, input().split()))
    
    for j in range(M):
        if R[j]==Ma[j]:
            if cnt[i]==0:
                ans += 1
            
            cnt[i] += 1
            idx[j][Ma[j]].append(i)
        elif R[j]>Ma[j]:
            for k in idx[j][Ma[j]]:
                cnt[k] -= 1
                
                if cnt[k]==0:
                    ans -= 1
            
            if cnt[i]==0:
                ans += 1
            
            cnt[i] += 1
            Ma[j] = R[j]
            idx[j][Ma[j]].append(i)

    print(ans)
0