結果

問題 No.2680 研究室配属
ユーザー tipstar0125tipstar0125
提出日時 2024-03-20 21:49:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-09-30 07:38:03
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 38 ms
59,008 KB
testcase_04 AC 44 ms
59,264 KB
testcase_05 AC 44 ms
62,848 KB
testcase_06 AC 46 ms
64,384 KB
testcase_07 AC 46 ms
64,256 KB
testcase_08 AC 46 ms
63,872 KB
testcase_09 AC 45 ms
61,952 KB
testcase_10 AC 61 ms
76,288 KB
testcase_11 AC 65 ms
76,672 KB
testcase_12 AC 68 ms
76,416 KB
testcase_13 AC 65 ms
76,672 KB
testcase_14 AC 69 ms
76,772 KB
testcase_15 AC 55 ms
66,816 KB
testcase_16 AC 92 ms
79,968 KB
testcase_17 AC 63 ms
76,800 KB
testcase_18 AC 79 ms
77,568 KB
testcase_19 AC 101 ms
81,280 KB
testcase_20 AC 94 ms
79,872 KB
testcase_21 AC 60 ms
71,168 KB
testcase_22 AC 90 ms
78,848 KB
testcase_23 AC 135 ms
85,376 KB
testcase_24 AC 140 ms
85,120 KB
testcase_25 AC 148 ms
85,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=list(map(int,input().split()))
A=list(map(int,input().split()))
cnt=[0 for _ in range(M)]
INF=10000
ans=[INF for _ in range(N)]

S=[]
for n in  range(N):
    s=list(map(int,input().split()))
    S.append(s)

for i in range(M):
    for j in range(N):
        if ans[j]!=INF:continue
        id=S[j][i]
        if cnt[id]==A[id]:continue
        cnt[id]+=1
        ans[j]=id
print(*ans)
0