結果

問題 No.2680 研究室配属
ユーザー tassei903tassei903
提出日時 2024-03-20 21:37:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-09-30 07:26:56
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 47 ms
59,136 KB
testcase_04 AC 47 ms
59,648 KB
testcase_05 AC 53 ms
63,360 KB
testcase_06 AC 56 ms
64,768 KB
testcase_07 AC 57 ms
64,640 KB
testcase_08 AC 56 ms
63,872 KB
testcase_09 AC 52 ms
62,336 KB
testcase_10 AC 75 ms
76,288 KB
testcase_11 AC 76 ms
76,288 KB
testcase_12 AC 80 ms
75,904 KB
testcase_13 AC 80 ms
76,288 KB
testcase_14 AC 82 ms
76,416 KB
testcase_15 AC 60 ms
66,304 KB
testcase_16 AC 106 ms
79,232 KB
testcase_17 AC 75 ms
76,160 KB
testcase_18 AC 93 ms
77,312 KB
testcase_19 AC 119 ms
80,384 KB
testcase_20 AC 110 ms
79,360 KB
testcase_21 AC 68 ms
70,656 KB
testcase_22 AC 102 ms
78,464 KB
testcase_23 AC 152 ms
84,096 KB
testcase_24 AC 150 ms
84,224 KB
testcase_25 AC 159 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, m = na()
a = na()
t = [[x for x in na()] for i in range(n)]
ans = [-1] * n
for i in range(m):
    for j in range(n):
        if ans[j] != -1:
            continue
        if a[t[j][i]] > 0:
            ans[j] = t[j][i] 
            a[t[j][i]] -= 1

print(*ans)
0