結果

問題 No.2730 Two Types Luggage
ユーザー ryohei22ryohei22
提出日時 2024-05-03 21:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 895 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 270,780 KB
最終ジャッジ日時 2024-05-03 21:59:01
合計ジャッジ時間 19,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
52,144 KB
testcase_02 AC 49 ms
61,056 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 62 ms
63,232 KB
testcase_05 AC 45 ms
60,416 KB
testcase_06 AC 42 ms
59,568 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 67 ms
60,928 KB
testcase_10 AC 55 ms
68,992 KB
testcase_11 AC 458 ms
268,496 KB
testcase_12 AC 836 ms
266,892 KB
testcase_13 AC 379 ms
215,824 KB
testcase_14 AC 427 ms
269,112 KB
testcase_15 AC 487 ms
115,660 KB
testcase_16 AC 190 ms
137,932 KB
testcase_17 AC 478 ms
264,180 KB
testcase_18 AC 453 ms
257,100 KB
testcase_19 AC 76 ms
85,332 KB
testcase_20 AC 207 ms
157,684 KB
testcase_21 AC 390 ms
256,636 KB
testcase_22 AC 511 ms
267,048 KB
testcase_23 AC 110 ms
96,212 KB
testcase_24 AC 240 ms
171,608 KB
testcase_25 AC 398 ms
270,780 KB
testcase_26 AC 139 ms
115,796 KB
testcase_27 AC 393 ms
255,744 KB
testcase_28 AC 225 ms
166,612 KB
testcase_29 AC 452 ms
259,260 KB
testcase_30 AC 449 ms
97,424 KB
testcase_31 AC 323 ms
210,956 KB
testcase_32 AC 272 ms
174,720 KB
testcase_33 AC 895 ms
268,064 KB
testcase_34 AC 840 ms
267,736 KB
testcase_35 AC 825 ms
268,648 KB
testcase_36 AC 872 ms
268,468 KB
testcase_37 AC 891 ms
268,068 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