結果

問題 No.2680 研究室配属
ユーザー hitonanodehitonanode
提出日時 2024-04-05 00:16:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,696 KB
最終ジャッジ日時 2024-10-01 00:41:29
合計ジャッジ時間 4,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 42 ms
58,752 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 46 ms
62,976 KB
testcase_06 AC 50 ms
64,384 KB
testcase_07 AC 48 ms
64,640 KB
testcase_08 AC 50 ms
64,128 KB
testcase_09 AC 48 ms
62,592 KB
testcase_10 AC 67 ms
76,652 KB
testcase_11 AC 69 ms
76,672 KB
testcase_12 AC 75 ms
76,928 KB
testcase_13 AC 70 ms
77,056 KB
testcase_14 AC 76 ms
77,092 KB
testcase_15 AC 57 ms
67,072 KB
testcase_16 AC 93 ms
80,100 KB
testcase_17 AC 71 ms
76,640 KB
testcase_18 AC 83 ms
77,916 KB
testcase_19 AC 105 ms
81,236 KB
testcase_20 AC 98 ms
79,872 KB
testcase_21 AC 65 ms
71,424 KB
testcase_22 AC 90 ms
78,912 KB
testcase_23 AC 140 ms
85,376 KB
testcase_24 AC 132 ms
85,632 KB
testcase_25 AC 138 ms
85,696 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