結果

問題 No.709 優勝可能性
ユーザー vwxyzvwxyz
提出日時 2024-04-13 16:03:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,166 ms / 3,500 ms
コード長 518 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-03 00:12:34
合計ジャッジ時間 11,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 549 ms
33,920 KB
testcase_11 AC 442 ms
24,320 KB
testcase_12 AC 790 ms
46,848 KB
testcase_13 AC 997 ms
58,624 KB
testcase_14 AC 927 ms
43,136 KB
testcase_15 AC 917 ms
31,104 KB
testcase_16 AC 986 ms
34,564 KB
testcase_17 AC 1,166 ms
48,736 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 945 ms
61,952 KB
testcase_21 AC 932 ms
61,952 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M=map(int,input().split())
R=[list(map(int,input().split())) for i in range(N)]
ma=[-1]*M
idx=[[] for m in range(M)]
cnt=defaultdict(int)
for n in range(N):
    for m in range(M):
        if ma[m]<R[n][m]:
            for i in idx[m]:
                cnt[i]-=1
                if cnt[i]==0:
                    del cnt[i]
            idx[m]=[]
        if ma[m]<=R[n][m]:
            ma[m]=R[n][m]
            idx[m].append(n)
            cnt[n]+=1
    ans=len(cnt)
    print(ans)
0