結果

問題 No.2680 研究室配属
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 13:28:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 85,540 KB
最終ジャッジ日時 2024-11-04 13:28:37
合計ジャッジ時間 5,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,312 KB
testcase_01 AC 36 ms
52,676 KB
testcase_02 AC 36 ms
52,004 KB
testcase_03 AC 42 ms
59,440 KB
testcase_04 AC 44 ms
59,872 KB
testcase_05 AC 48 ms
64,496 KB
testcase_06 AC 50 ms
65,020 KB
testcase_07 AC 49 ms
64,408 KB
testcase_08 AC 49 ms
64,952 KB
testcase_09 AC 48 ms
63,608 KB
testcase_10 AC 67 ms
76,804 KB
testcase_11 AC 67 ms
77,308 KB
testcase_12 AC 73 ms
76,608 KB
testcase_13 AC 71 ms
76,872 KB
testcase_14 AC 76 ms
77,152 KB
testcase_15 AC 58 ms
69,104 KB
testcase_16 AC 100 ms
80,080 KB
testcase_17 AC 82 ms
76,512 KB
testcase_18 AC 83 ms
77,996 KB
testcase_19 AC 108 ms
81,640 KB
testcase_20 AC 100 ms
80,056 KB
testcase_21 AC 63 ms
73,272 KB
testcase_22 AC 92 ms
79,308 KB
testcase_23 AC 143 ms
85,208 KB
testcase_24 AC 143 ms
85,540 KB
testcase_25 AC 150 ms
85,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
t=[list(map(int,input().split())) for i in range(n)]
r=[-1]*n
for j in range(m):
  for i in range(n):
    if r[i]!=-1:
      continue
    if a[t[i][j]]>0:
      r[i]=t[i][j]
      a[t[i][j]]-=1
print(*r)
0