結果

問題 No.2680 研究室配属
ユーザー mutualnsmutualns
提出日時 2024-03-21 00:13:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-09-30 09:45:55
合計ジャッジ時間 3,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 46 ms
59,008 KB
testcase_04 AC 47 ms
59,264 KB
testcase_05 AC 53 ms
62,720 KB
testcase_06 AC 56 ms
64,128 KB
testcase_07 AC 56 ms
64,256 KB
testcase_08 AC 55 ms
63,872 KB
testcase_09 AC 53 ms
61,952 KB
testcase_10 AC 79 ms
76,416 KB
testcase_11 AC 82 ms
76,416 KB
testcase_12 AC 83 ms
76,800 KB
testcase_13 AC 81 ms
76,544 KB
testcase_14 AC 85 ms
76,288 KB
testcase_15 AC 66 ms
66,688 KB
testcase_16 AC 109 ms
79,872 KB
testcase_17 AC 80 ms
76,544 KB
testcase_18 AC 95 ms
77,824 KB
testcase_19 AC 118 ms
81,024 KB
testcase_20 AC 112 ms
79,744 KB
testcase_21 AC 74 ms
71,296 KB
testcase_22 AC 104 ms
78,848 KB
testcase_23 AC 157 ms
84,864 KB
testcase_24 AC 155 ms
85,120 KB
testcase_25 AC 159 ms
84,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

check=[0]*n
ans=[0]*n

for j in range(m):
  for i in range(n):
    if check[i]:
      continue
    if a[t[i][j]]:
      a[t[i][j]]-=1
      ans[i]=t[i][j]
      check[i]=1
      
print(*ans)
0