結果

問題 No.709 優勝可能性
ユーザー kohei2019kohei2019
提出日時 2022-03-21 11:58:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 3,500 ms
コード長 724 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 158,108 KB
最終ジャッジ日時 2024-10-08 16:19:21
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,768 KB
testcase_01 AC 36 ms
52,948 KB
testcase_02 AC 36 ms
52,768 KB
testcase_03 AC 36 ms
52,952 KB
testcase_04 AC 36 ms
51,936 KB
testcase_05 AC 37 ms
52,804 KB
testcase_06 AC 36 ms
52,740 KB
testcase_07 AC 37 ms
52,788 KB
testcase_08 AC 35 ms
52,744 KB
testcase_09 AC 36 ms
53,420 KB
testcase_10 AC 226 ms
99,864 KB
testcase_11 AC 192 ms
96,152 KB
testcase_12 AC 265 ms
103,076 KB
testcase_13 AC 341 ms
115,696 KB
testcase_14 AC 306 ms
113,924 KB
testcase_15 AC 300 ms
113,220 KB
testcase_16 AC 377 ms
121,856 KB
testcase_17 AC 397 ms
158,108 KB
testcase_18 AC 36 ms
52,832 KB
testcase_19 AC 35 ms
52,200 KB
testcase_20 AC 290 ms
114,304 KB
testcase_21 AC 297 ms
114,296 KB
testcase_22 AC 37 ms
52,340 KB
testcase_23 AC 36 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsR = [list(map(int,input().split())) for i in range(N)]
lsTF = []
cnt = 0
lsmax = [[-float('INF')] for i in range(M)]

for i in range(N):
    cnt += 1
    lsp = lsR[i]
    TF = [True]*(M)
    remls = set()
    for j in range(M):
        if lsmax[j][0] > lsp[j]:
            TF[j] = False
        elif lsmax[j][0] == lsp[j]:
            lsmax[j].append(i)
        else:
            lose = lsmax[j][1:]
            for k in lose:
                lsTF[k][j] = False
                remls.add(k)
            lsmax[j] = [lsp[j],i]
    for rem in remls:
        if lsTF[rem].count(True) == 0:
            cnt -= 1
    if TF.count(True) == 0:
        cnt -= 1
    lsTF.append(TF)
    print(cnt)
    
0