結果

問題 No.2680 研究室配属
ユーザー PNJPNJ
提出日時 2024-03-20 21:06:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-09-30 06:51:54
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 41 ms
58,880 KB
testcase_04 AC 42 ms
59,136 KB
testcase_05 AC 44 ms
62,848 KB
testcase_06 AC 52 ms
63,872 KB
testcase_07 AC 51 ms
64,512 KB
testcase_08 AC 49 ms
63,872 KB
testcase_09 AC 46 ms
61,824 KB
testcase_10 AC 67 ms
76,672 KB
testcase_11 AC 72 ms
76,416 KB
testcase_12 AC 72 ms
76,416 KB
testcase_13 AC 68 ms
76,672 KB
testcase_14 AC 72 ms
76,584 KB
testcase_15 AC 56 ms
66,688 KB
testcase_16 AC 96 ms
79,616 KB
testcase_17 AC 70 ms
76,672 KB
testcase_18 AC 84 ms
77,568 KB
testcase_19 AC 109 ms
81,024 KB
testcase_20 AC 102 ms
79,880 KB
testcase_21 AC 61 ms
71,424 KB
testcase_22 AC 94 ms
78,976 KB
testcase_23 AC 144 ms
85,248 KB
testcase_24 AC 146 ms
85,120 KB
testcase_25 AC 151 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

N,M = Map()
A = Map()
T = [Map() for i in range(N)]
ans = [-1 for i in range(N)]

for m in range(M):
  for i in range(N):
    if ans[i] != -1:
      continue
    t = T[i][m]
    if A[t] > 0:
      A[t] -= 1
      ans[i] = t

print(*ans)
0