結果

問題 No.2680 研究室配属
ユーザー noriocnorioc
提出日時 2024-03-20 22:57:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-09-30 09:05:47
合計ジャッジ時間 3,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 50 ms
58,752 KB
testcase_04 AC 43 ms
59,136 KB
testcase_05 AC 48 ms
62,720 KB
testcase_06 AC 49 ms
64,256 KB
testcase_07 AC 49 ms
64,896 KB
testcase_08 AC 50 ms
64,384 KB
testcase_09 AC 46 ms
62,336 KB
testcase_10 AC 67 ms
76,416 KB
testcase_11 AC 74 ms
76,416 KB
testcase_12 AC 71 ms
76,544 KB
testcase_13 AC 67 ms
76,716 KB
testcase_14 AC 74 ms
76,852 KB
testcase_15 AC 55 ms
66,688 KB
testcase_16 AC 98 ms
79,872 KB
testcase_17 AC 65 ms
76,544 KB
testcase_18 AC 88 ms
77,696 KB
testcase_19 AC 112 ms
80,896 KB
testcase_20 AC 103 ms
79,872 KB
testcase_21 AC 63 ms
71,552 KB
testcase_22 AC 94 ms
78,816 KB
testcase_23 AC 150 ms
84,736 KB
testcase_24 AC 145 ms
84,736 KB
testcase_25 AC 161 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

tab = []
for _ in range(N):
    tab.append(list(map(int, input().split())))

rooms = [0] * M
ans = [-1] * N
used = set()

for k in range(M):  # 第 k 希望
    for i in range(N):  # 学生
        if i in used: continue
        r = tab[i][k]
        if rooms[r] + 1 <= A[r]:
            ans[i] = r
            rooms[r] += 1
            used.add(i)

print(*ans)
0