結果
問題 | No.709 優勝可能性 |
ユーザー | simamumu |
提出日時 | 2018-06-30 00:01:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 51,400 KB |
最終ジャッジ日時 | 2024-07-01 00:32:27 |
合計ジャッジ時間 | 11,464 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 520 ms
43,956 KB |
testcase_01 | AC | 529 ms
44,468 KB |
testcase_02 | AC | 523 ms
44,468 KB |
testcase_03 | AC | 517 ms
44,332 KB |
testcase_04 | AC | 521 ms
44,048 KB |
testcase_05 | AC | 520 ms
44,596 KB |
testcase_06 | AC | 516 ms
43,952 KB |
testcase_07 | AC | 523 ms
44,080 KB |
testcase_08 | AC | 520 ms
44,088 KB |
testcase_09 | AC | 512 ms
44,336 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import numpy as np N,M = map(int,input().split()) R_max = [0 for i in range(M)] R_max_num = [0 for i in range(M)] yusho = [-1 for i in range(M)] ans = 0 ans_li = [] for i in range(N): R_li = list(map(int,input().split())) anss = [] for j in range(M): if R_li[j] > R_max[j]: R_max[j] = R_li[j] yusho[j] = [i] elif R_li[j] == R_max[j]: yusho[j].append(i) anss = anss + yusho[j] anss2 = list(set(anss)) ans_li.append(len(anss2)) for i in ans_li: print(i)