結果

問題 No.709 優勝可能性
ユーザー _shota_224__shota_224_
提出日時 2018-06-30 00:45:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 361 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,928 KB
実行使用メモリ 13,580 KB
最終ジャッジ日時 2023-09-13 15:58:17
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 16 ms
7,720 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 16 ms
7,796 KB
testcase_08 RE -
testcase_09 RE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = list(map(int, input().split()))
R = []
m_t = [-float('inf') for i in range(3)]
for i in range(N):
    l = list(map(int, input().split()))
    for j in range(M):
        m_t[j] = max([m_t[j],l[j]])
    R.append(l)
    s = set()
    for j in range(M):
        for k in range(i+1):
            if R[k][j]==m_t[j]:
                s.add(k)
    print(len(s))
0