結果

問題 No.2680 研究室配属
ユーザー detteiuudetteiuu
提出日時 2024-11-23 00:02:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-11-23 00:03:04
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,968 KB
testcase_01 AC 44 ms
51,584 KB
testcase_02 AC 51 ms
51,840 KB
testcase_03 AC 52 ms
58,624 KB
testcase_04 AC 49 ms
59,648 KB
testcase_05 AC 55 ms
62,848 KB
testcase_06 AC 57 ms
64,512 KB
testcase_07 AC 58 ms
64,384 KB
testcase_08 AC 58 ms
64,384 KB
testcase_09 AC 57 ms
61,824 KB
testcase_10 AC 80 ms
76,288 KB
testcase_11 AC 81 ms
76,672 KB
testcase_12 AC 86 ms
76,544 KB
testcase_13 AC 104 ms
76,416 KB
testcase_14 AC 86 ms
76,672 KB
testcase_15 AC 67 ms
66,560 KB
testcase_16 AC 110 ms
79,744 KB
testcase_17 AC 81 ms
76,160 KB
testcase_18 AC 99 ms
77,952 KB
testcase_19 AC 124 ms
80,896 KB
testcase_20 AC 118 ms
80,128 KB
testcase_21 AC 77 ms
71,424 KB
testcase_22 AC 107 ms
78,848 KB
testcase_23 AC 161 ms
84,736 KB
testcase_24 AC 194 ms
85,376 KB
testcase_25 AC 171 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0]*M
ans = [-1]*N
for i in range(M):
    for j in range(N):
        if ans[j] != -1:
            continue
        if cnt[T[j][i]] == A[T[j][i]]:
            continue
        cnt[T[j][i]] += 1
        ans[j] = T[j][i]

print(*ans)
0