結果

問題 No.2680 研究室配属
ユーザー titiatitia
提出日時 2024-03-20 21:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-09-30 07:26:46
合計ジャッジ時間 4,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 35 ms
11,008 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 76 ms
13,184 KB
testcase_11 AC 71 ms
12,416 KB
testcase_12 AC 93 ms
14,464 KB
testcase_13 AC 72 ms
11,904 KB
testcase_14 AC 95 ms
14,208 KB
testcase_15 AC 35 ms
11,136 KB
testcase_16 AC 193 ms
23,552 KB
testcase_17 AC 53 ms
11,520 KB
testcase_18 AC 129 ms
15,744 KB
testcase_19 AC 246 ms
28,672 KB
testcase_20 AC 210 ms
23,936 KB
testcase_21 AC 42 ms
11,264 KB
testcase_22 AC 152 ms
17,664 KB
testcase_23 AC 389 ms
42,880 KB
testcase_24 AC 394 ms
43,136 KB
testcase_25 AC 513 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))
T=[list(map(int,input().split())) for i in range(N)]

ANS=[-1]*N
L=[[] for i in range(M)]

for i in range(M):
    for j in range(N):
        if ANS[j]!=-1:
            continue
        
        x=T[j][i]

        if len(L[x])==A[x]:
            continue

        ANS[j]=x
        L[x].append(j)

print(*ANS)
0