結果

問題 No.2680 研究室配属
ユーザー 👑 rin204rin204
提出日時 2024-03-03 14:41:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 85,484 KB
最終ジャッジ日時 2024-09-30 05:02:53
合計ジャッジ時間 4,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 44 ms
59,008 KB
testcase_05 AC 48 ms
62,720 KB
testcase_06 AC 50 ms
63,872 KB
testcase_07 AC 50 ms
64,512 KB
testcase_08 AC 51 ms
64,000 KB
testcase_09 AC 49 ms
61,824 KB
testcase_10 AC 67 ms
76,416 KB
testcase_11 AC 68 ms
76,800 KB
testcase_12 AC 73 ms
76,544 KB
testcase_13 AC 68 ms
76,544 KB
testcase_14 AC 73 ms
76,712 KB
testcase_15 AC 59 ms
66,688 KB
testcase_16 AC 98 ms
80,096 KB
testcase_17 AC 69 ms
76,416 KB
testcase_18 AC 87 ms
77,952 KB
testcase_19 AC 112 ms
80,896 KB
testcase_20 AC 103 ms
79,744 KB
testcase_21 AC 63 ms
71,296 KB
testcase_22 AC 93 ms
79,104 KB
testcase_23 AC 145 ms
85,120 KB
testcase_24 AC 143 ms
85,484 KB
testcase_25 AC 151 ms
85,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

row = [False] * n
ans = [-1] * n
for j in range(m):
    for i in range(n):
        if row[i]:
            continue
        t = T[i][j]
        if A[t] >= 1:
            A[t] -= 1
            row[i] = True
            ans[i] = t

print(*ans)
0