結果

問題 No.709 優勝可能性
ユーザー togetogehattogetogehat
提出日時 2018-07-21 10:15:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,022 ms / 3,500 ms
コード長 479 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-06-07 19:46:48
合計ジャッジ時間 11,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 582 ms
34,304 KB
testcase_11 AC 468 ms
24,960 KB
testcase_12 AC 778 ms
47,104 KB
testcase_13 AC 996 ms
59,264 KB
testcase_14 AC 923 ms
43,776 KB
testcase_15 AC 891 ms
31,488 KB
testcase_16 AC 927 ms
32,384 KB
testcase_17 AC 1,016 ms
39,352 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 1,022 ms
62,592 KB
testcase_21 AC 950 ms
62,592 KB
testcase_22 AC 28 ms
10,496 KB
testcase_23 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
x=[0]*m
c=[0]*n
s=[[]]*m
r=0
rs=[list(map(int,input().split())) for _ in range(n)]
for i in range(n):
    b=0
    for j,v in enumerate(rs[i]):
        if x[j]==v:
            c[i]+=1
            s[j].append(i)
            b=1
        elif x[j]<v:
            x[j]=v
            c[i]+=1
            for k in s[j]:
                c[k]-=1
                if not c[k]:
                    r-=1
            s[j]=[i]
            b=1
    r+=b
    print(r)
0