結果

問題 No.2680 研究室配属
ユーザー hitonanodehitonanode
提出日時 2024-04-05 00:16:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-10-01 00:41:34
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 34 ms
11,008 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 76 ms
13,312 KB
testcase_11 AC 71 ms
12,544 KB
testcase_12 AC 93 ms
14,336 KB
testcase_13 AC 70 ms
12,032 KB
testcase_14 AC 92 ms
14,208 KB
testcase_15 AC 35 ms
11,136 KB
testcase_16 AC 187 ms
23,808 KB
testcase_17 AC 54 ms
11,648 KB
testcase_18 AC 121 ms
15,744 KB
testcase_19 AC 249 ms
28,032 KB
testcase_20 AC 207 ms
23,552 KB
testcase_21 AC 43 ms
11,392 KB
testcase_22 AC 149 ms
17,536 KB
testcase_23 AC 371 ms
42,880 KB
testcase_24 AC 382 ms
42,880 KB
testcase_25 AC 466 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
T = [list(map(int, input().split())) for _ in range(n)]

ans = [-1] * n
for t in range(m):
    for i in range(n):
        if ans[i] != -1:
            continue
        
        v = T[i][t]
        if a[v]:
            a[v] -= 1
            ans[i] = v

print(*ans, sep=" ")
0