結果

問題 No.709 優勝可能性
ユーザー H20H20
提出日時 2021-01-20 11:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 3,500 ms
コード長 516 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 166,308 KB
最終ジャッジ日時 2024-12-22 21:00:59
合計ジャッジ時間 6,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 333 ms
76,888 KB
testcase_11 AC 331 ms
76,928 KB
testcase_12 AC 373 ms
76,924 KB
testcase_13 AC 462 ms
77,152 KB
testcase_14 AC 405 ms
77,056 KB
testcase_15 AC 429 ms
77,184 KB
testcase_16 AC 489 ms
98,956 KB
testcase_17 AC 516 ms
166,308 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 384 ms
76,416 KB
testcase_21 AC 384 ms
76,288 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 38 ms
51,968 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