結果

問題 No.709 優勝可能性
ユーザー H20H20
提出日時 2021-01-20 11:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 459 ms / 3,500 ms
コード長 516 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 166,148 KB
最終ジャッジ日時 2024-06-02 03:59:36
合計ジャッジ時間 5,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 34 ms
52,264 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 291 ms
76,544 KB
testcase_11 AC 287 ms
76,928 KB
testcase_12 AC 317 ms
76,812 KB
testcase_13 AC 384 ms
77,184 KB
testcase_14 AC 347 ms
76,928 KB
testcase_15 AC 382 ms
77,440 KB
testcase_16 AC 421 ms
98,560 KB
testcase_17 AC 459 ms
166,148 KB
testcase_18 AC 33 ms
52,096 KB
testcase_19 AC 34 ms
51,968 KB
testcase_20 AC 348 ms
76,356 KB
testcase_21 AC 338 ms
76,544 KB
testcase_22 AC 34 ms
52,096 KB
testcase_23 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
MAXN = []
[MAXN.append([])for _ in range(M)]
MAXV = [0]*M
ans = 0
for i in range(N):
   L = (list(map(int,input().split())))
   same = False
   update = False
   for j in range(M):
      if MAXV[j]==L[j]:
         MAXN[j].append(i)
         same = True
      elif MAXV[j]<L[j]:
         MAXN[j]=[i]
         MAXV[j]=L[j]
         update = True
   if same:
      ans+=1
   if update:
      ANS = []
      for j in range(M):
         ANS+=MAXN[j]
      ans = len(set(ANS))
   print(ans)
0