結果

問題 No.2730 Two Types Luggage
ユーザー ryohei22ryohei22
提出日時 2024-05-03 21:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 820 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 270,420 KB
最終ジャッジ日時 2024-11-25 02:45:32
合計ジャッジ時間 15,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,596 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 41 ms
61,120 KB
testcase_03 AC 33 ms
53,316 KB
testcase_04 AC 63 ms
64,256 KB
testcase_05 AC 46 ms
60,200 KB
testcase_06 AC 39 ms
60,856 KB
testcase_07 AC 34 ms
53,024 KB
testcase_08 AC 34 ms
53,100 KB
testcase_09 AC 43 ms
62,592 KB
testcase_10 AC 49 ms
70,460 KB
testcase_11 AC 416 ms
268,248 KB
testcase_12 AC 820 ms
266,672 KB
testcase_13 AC 323 ms
217,752 KB
testcase_14 AC 390 ms
269,048 KB
testcase_15 AC 458 ms
115,512 KB
testcase_16 AC 181 ms
138,260 KB
testcase_17 AC 445 ms
264,412 KB
testcase_18 AC 430 ms
257,716 KB
testcase_19 AC 69 ms
86,188 KB
testcase_20 AC 191 ms
157,276 KB
testcase_21 AC 356 ms
257,080 KB
testcase_22 AC 455 ms
266,992 KB
testcase_23 AC 99 ms
96,076 KB
testcase_24 AC 220 ms
171,296 KB
testcase_25 AC 378 ms
270,420 KB
testcase_26 AC 133 ms
115,904 KB
testcase_27 AC 353 ms
256,184 KB
testcase_28 AC 199 ms
166,660 KB
testcase_29 AC 412 ms
259,460 KB
testcase_30 AC 411 ms
97,748 KB
testcase_31 AC 301 ms
211,468 KB
testcase_32 AC 259 ms
174,336 KB
testcase_33 AC 791 ms
268,164 KB
testcase_34 AC 785 ms
267,936 KB
testcase_35 AC 796 ms
268,252 KB
testcase_36 AC 789 ms
268,196 KB
testcase_37 AC 787 ms
268,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left


N, M, W = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse=True)
B = list(map(int, input().split()))
C = list(map(int, input().split()))

s = [0]
for i in A:
	s.append(s[-1]+i)

ans = 0
for i in range(2**M):
	w = v = 0
	for j in range(M):
		if (i >> j) & 1:
			w += B[j]
			v += C[j]
	if W < w:
		continue
	v += s[min(W-w, N)]
	ans = max(ans, v)
print(ans)
0