結果

問題 No.2680 研究室配属
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-23 17:59:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-09-30 13:33:32
合計ジャッジ時間 4,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 68 ms
13,056 KB
testcase_11 AC 71 ms
12,416 KB
testcase_12 AC 87 ms
14,208 KB
testcase_13 AC 69 ms
12,160 KB
testcase_14 AC 95 ms
14,080 KB
testcase_15 AC 35 ms
11,008 KB
testcase_16 AC 189 ms
23,808 KB
testcase_17 AC 53 ms
11,648 KB
testcase_18 AC 118 ms
15,744 KB
testcase_19 AC 210 ms
28,288 KB
testcase_20 AC 183 ms
23,552 KB
testcase_21 AC 43 ms
11,136 KB
testcase_22 AC 155 ms
17,536 KB
testcase_23 AC 335 ms
42,880 KB
testcase_24 AC 336 ms
43,008 KB
testcase_25 AC 587 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
T=[list(map(int,input().split())) for _ in range(N)]
ans=[-1 for _ in range(N)]
ok=0
L=[0 for _ in range(M)]
IDX=[0 for _ in range(N)]
while not ok:
    ok=1
    for p in range(N):
        if ans[p]!=-1:continue
        t=T[p][IDX[p]]
        if L[t]<A[t]:
            ans[p]=t
            L[t]+=1
        else:
            IDX[p]+=1
            ok=0
print(*ans)
0