結果

問題 No.2680 研究室配属
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-03-20 22:04:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-09-30 07:56:18
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,968 KB
testcase_01 AC 33 ms
53,476 KB
testcase_02 AC 34 ms
53,204 KB
testcase_03 AC 41 ms
60,068 KB
testcase_04 AC 39 ms
60,088 KB
testcase_05 AC 42 ms
63,508 KB
testcase_06 AC 45 ms
65,904 KB
testcase_07 AC 46 ms
66,492 KB
testcase_08 AC 46 ms
65,420 KB
testcase_09 AC 42 ms
64,140 KB
testcase_10 AC 59 ms
76,688 KB
testcase_11 AC 63 ms
76,884 KB
testcase_12 AC 64 ms
76,980 KB
testcase_13 AC 64 ms
76,848 KB
testcase_14 AC 67 ms
76,884 KB
testcase_15 AC 51 ms
67,464 KB
testcase_16 AC 85 ms
80,108 KB
testcase_17 AC 62 ms
76,576 KB
testcase_18 AC 74 ms
78,084 KB
testcase_19 AC 98 ms
81,360 KB
testcase_20 AC 93 ms
80,196 KB
testcase_21 AC 58 ms
71,956 KB
testcase_22 AC 83 ms
79,380 KB
testcase_23 AC 125 ms
85,888 KB
testcase_24 AC 122 ms
85,136 KB
testcase_25 AC 131 ms
85,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
kakutei = [0] * M
ans = [-1] * N
T = [list(map(int, input().split())) for _ in range(N)]
for j in range(M):
    for i in range(N):
        if ans[i] != -1:
            continue
        t = T[i][j]
        if kakutei[t] < A[t]:
            ans[i] = t
            kakutei[t] += 1
print(*ans)
0