結果

問題 No.709 優勝可能性
ユーザー AEnAEn
提出日時 2022-06-21 20:47:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 3,500 ms
コード長 624 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,820 KB
最終ジャッジ日時 2024-10-14 15:32:48
合計ジャッジ時間 6,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 35 ms
51,900 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 312 ms
76,544 KB
testcase_11 AC 277 ms
76,920 KB
testcase_12 AC 337 ms
76,928 KB
testcase_13 AC 346 ms
76,864 KB
testcase_14 AC 329 ms
76,976 KB
testcase_15 AC 344 ms
76,968 KB
testcase_16 AC 344 ms
81,380 KB
testcase_17 AC 374 ms
106,820 KB
testcase_18 AC 38 ms
51,456 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 342 ms
76,880 KB
testcase_21 AC 339 ms
76,928 KB
testcase_22 AC 36 ms
52,224 KB
testcase_23 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
m = [0]*M
n = [[] for _ in range(M)]
cnt = [0]*N
res = 0
for i in range(N):
    R = list(map(int, input().split()))
    for j in range(M):
        if m[j] < R[j]:
            m[j] = R[j]
            for nn in n[j]:
                if cnt[nn] == 1:
                    cnt[nn] = 0
                    res -= 1
                else:
                    cnt[nn] -= 1
            n[j] = []
        if m[j] == R[j]:
            if cnt[i] == 0:
                cnt[i] = 1
                res += 1
            else:
                cnt[i] += 1
            n[j].append(i)
    print(res)



        
0