結果

問題 No.709 優勝可能性
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-15 15:25:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,661 ms / 3,500 ms
コード長 685 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,256 KB
最終ジャッジ日時 2024-11-06 13:41:30
合計ジャッジ時間 15,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 811 ms
10,752 KB
testcase_11 AC 692 ms
10,624 KB
testcase_12 AC 986 ms
10,752 KB
testcase_13 AC 1,391 ms
10,624 KB
testcase_14 AC 1,201 ms
10,624 KB
testcase_15 AC 1,173 ms
11,008 KB
testcase_16 AC 1,358 ms
16,580 KB
testcase_17 AC 1,661 ms
43,256 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 1,145 ms
10,752 KB
testcase_21 AC 1,158 ms
10,752 KB
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
max_status = [0]*m
candidate = [0]*m
count = 0
top_change = False
top_tie = False

for i in range(n):
    status = list(map(int,input().split()))
    for j in range(m):
        if status[j]>max_status[j]:
            max_status[j] = status[j]
            candidate[j] = [i+1]
            top_change = True
        elif status[j]==max_status[j]:
            candidate[j] += [i+1]
            top_tie = True
    
    if top_change:
        ans = []
        for j in candidate:
            ans += j
        count = len(set(ans))
        top_change = False
        top_tie = False
    elif top_tie:
        count += 1
        top_tie = False
    print(count)
0