結果

問題 No.2680 研究室配属
ユーザー H20H20
提出日時 2024-03-20 21:32:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 85,348 KB
最終ジャッジ日時 2024-09-30 07:21:07
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,280 KB
testcase_01 AC 33 ms
54,100 KB
testcase_02 AC 34 ms
54,072 KB
testcase_03 AC 37 ms
58,356 KB
testcase_04 AC 42 ms
59,972 KB
testcase_05 AC 40 ms
61,780 KB
testcase_06 AC 46 ms
64,160 KB
testcase_07 AC 41 ms
64,776 KB
testcase_08 AC 43 ms
62,888 KB
testcase_09 AC 43 ms
62,668 KB
testcase_10 AC 59 ms
76,516 KB
testcase_11 AC 62 ms
76,640 KB
testcase_12 AC 62 ms
76,416 KB
testcase_13 AC 61 ms
76,676 KB
testcase_14 AC 66 ms
76,560 KB
testcase_15 AC 49 ms
66,776 KB
testcase_16 AC 86 ms
79,768 KB
testcase_17 AC 60 ms
76,940 KB
testcase_18 AC 74 ms
77,812 KB
testcase_19 AC 97 ms
81,152 KB
testcase_20 AC 89 ms
80,200 KB
testcase_21 AC 55 ms
71,844 KB
testcase_22 AC 85 ms
78,604 KB
testcase_23 AC 128 ms
85,348 KB
testcase_24 AC 121 ms
85,340 KB
testcase_25 AC 127 ms
85,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)]

R = list(range(N))
ANS = [0]*N
for i in range(M):
    NR = []
    for r in R:
        if A[T[r][i]]>0:
            ANS[r]=T[r][i]
            A[T[r][i]]-=1
        else:
            NR.append(r)
    R = NR

print(*ANS)
0