結果

問題 No.709 優勝可能性
ユーザー zxc1113zxc1113
提出日時 2018-07-06 03:40:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,148 ms / 3,500 ms
コード長 811 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-07-01 02:43:42
合計ジャッジ時間 11,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 693 ms
46,080 KB
testcase_11 AC 556 ms
35,968 KB
testcase_12 AC 923 ms
58,880 KB
testcase_13 AC 1,121 ms
68,096 KB
testcase_14 AC 1,049 ms
52,352 KB
testcase_15 AC 994 ms
41,088 KB
testcase_16 AC 1,057 ms
44,124 KB
testcase_17 AC 1,148 ms
50,352 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 1,084 ms
71,424 KB
testcase_21 AC 1,096 ms
71,424 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = list(map(int, input().split()))
people = []
for i in range(n):
    people.append(list(map(int,input().split())))
imos = [0]*n
buf = [0]*n
max_point = [0]*n
members = [[] for i in range(n)]
for i in range(n):  
    f = False  
    for ind, j in enumerate(people[i]):
        if max_point[ind] < j:
            f = True
            buf[i] += 1
            max_point[ind] = j
            for m in members[ind]:
                buf[m] -=1
                if buf[m] == 0:
                    imos[i] -=1
            members[ind] = [i]
        elif max_point[ind] == j:
            f = True
            buf[i] += 1
            members[ind].append(i)
        else:
            pass
    if f:
        imos[i] += 1
    #print(buf, imos, f)
for i in range(n-1):
    imos[i+1] += imos[i]
for i in imos:
    print(i)
0