結果
問題 | No.709 優勝可能性 |
ユーザー | 👑 Kazun |
提出日時 | 2021-02-10 01:36:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 156,680 KB |
最終ジャッジ日時 | 2024-07-07 06:40:33 |
合計ジャッジ時間 | 7,710 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
62,528 KB |
testcase_01 | AC | 42 ms
53,492 KB |
testcase_02 | AC | 42 ms
54,056 KB |
testcase_03 | AC | 41 ms
54,184 KB |
testcase_04 | AC | 40 ms
54,672 KB |
testcase_05 | AC | 39 ms
53,556 KB |
testcase_06 | AC | 40 ms
54,968 KB |
testcase_07 | AC | 39 ms
54,424 KB |
testcase_08 | AC | 40 ms
54,128 KB |
testcase_09 | AC | 40 ms
53,812 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 193 ms
80,292 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import sys from collections import defaultdict input=sys.stdin.readline write=sys.stdout.write N,M=map(int,input().split()) Set=[set()]*M Max=[0]*M Z=[0]*N for i in range(N): R=list(map(int,input().split())) for k in range(M): if R[k]==Max[k]: Set[k].add(i) elif R[k]>Max[k]: Max[k]=R[k] Set[k]={i} X=set() for k in range(M): X|=Set[k] Z[i]=len(X) write("\n".join(map(str,Z)))