結果

問題 No.2680 研究室配属
ユーザー kjqwkjqw
提出日時 2023-12-13 15:47:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-09-30 05:03:19
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 36 ms
11,008 KB
testcase_06 AC 39 ms
11,136 KB
testcase_07 AC 37 ms
11,008 KB
testcase_08 AC 38 ms
11,136 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 96 ms
13,184 KB
testcase_11 AC 89 ms
12,544 KB
testcase_12 AC 121 ms
14,336 KB
testcase_13 AC 91 ms
12,032 KB
testcase_14 AC 127 ms
14,208 KB
testcase_15 AC 40 ms
11,008 KB
testcase_16 AC 269 ms
23,936 KB
testcase_17 AC 66 ms
11,648 KB
testcase_18 AC 165 ms
15,872 KB
testcase_19 AC 355 ms
28,672 KB
testcase_20 AC 306 ms
23,936 KB
testcase_21 AC 51 ms
11,264 KB
testcase_22 AC 225 ms
17,536 KB
testcase_23 AC 599 ms
43,008 KB
testcase_24 AC 583 ms
43,008 KB
testcase_25 AC 640 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
T = [list(map(int, input().split())) for _ in range(N)]

T1 = [-1 for i in T]
T2 = [0 for _ in range(M)]

for i in range(M):
  for j in range(N):
    if T2[T[j][i]] < A[T[j][i]] and T1[j] == -1:
      T1[j] = T[j][i]
      T2[T[j][i]] += 1
print(*T1)
0