結果

問題 No.2680 研究室配属
ユーザー timitimi
提出日時 2024-03-20 21:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-09-30 06:53:56
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 33 ms
51,824 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 37 ms
59,072 KB
testcase_04 AC 37 ms
59,392 KB
testcase_05 AC 41 ms
62,720 KB
testcase_06 AC 43 ms
63,744 KB
testcase_07 AC 44 ms
64,256 KB
testcase_08 AC 43 ms
63,488 KB
testcase_09 AC 43 ms
61,952 KB
testcase_10 AC 59 ms
76,672 KB
testcase_11 AC 59 ms
76,416 KB
testcase_12 AC 63 ms
76,416 KB
testcase_13 AC 62 ms
76,544 KB
testcase_14 AC 65 ms
76,672 KB
testcase_15 AC 50 ms
66,560 KB
testcase_16 AC 84 ms
79,616 KB
testcase_17 AC 65 ms
76,800 KB
testcase_18 AC 74 ms
77,696 KB
testcase_19 AC 92 ms
80,896 KB
testcase_20 AC 87 ms
80,000 KB
testcase_21 AC 55 ms
71,168 KB
testcase_22 AC 80 ms
78,848 KB
testcase_23 AC 120 ms
85,120 KB
testcase_24 AC 124 ms
85,120 KB
testcase_25 AC 127 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
ans=[-1]*N
B=[]
for i in range(N):
  C=list(map(int, input().split()))
  B.append(C)
  
for j in range(M):
  for i in range(N):
    if ans[i]==-1:
      p=B[i][j]
      if A[p]>0:
        A[p]-=1
        ans[i]=p 
print(*ans)
0