結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 23:35:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 266,760 KB
最終ジャッジ日時 2024-08-13 23:35:36
合計ジャッジ時間 15,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 46 ms
60,928 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 62 ms
62,720 KB
testcase_05 AC 50 ms
60,416 KB
testcase_06 AC 45 ms
59,904 KB
testcase_07 AC 37 ms
52,084 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 51 ms
61,184 KB
testcase_10 AC 53 ms
67,200 KB
testcase_11 AC 352 ms
206,092 KB
testcase_12 AC 841 ms
264,264 KB
testcase_13 AC 302 ms
174,464 KB
testcase_14 AC 359 ms
207,256 KB
testcase_15 AC 461 ms
107,520 KB
testcase_16 AC 168 ms
118,072 KB
testcase_17 AC 419 ms
231,768 KB
testcase_18 AC 426 ms
231,028 KB
testcase_19 AC 72 ms
79,104 KB
testcase_20 AC 188 ms
131,904 KB
testcase_21 AC 343 ms
203,828 KB
testcase_22 AC 453 ms
256,004 KB
testcase_23 AC 102 ms
89,728 KB
testcase_24 AC 217 ms
142,432 KB
testcase_25 AC 348 ms
207,372 KB
testcase_26 AC 134 ms
102,528 KB
testcase_27 AC 340 ms
202,672 KB
testcase_28 AC 209 ms
140,692 KB
testcase_29 AC 403 ms
232,832 KB
testcase_30 AC 410 ms
92,032 KB
testcase_31 AC 328 ms
169,312 KB
testcase_32 AC 271 ms
174,668 KB
testcase_33 AC 824 ms
266,664 KB
testcase_34 AC 804 ms
266,760 KB
testcase_35 AC 826 ms
264,704 KB
testcase_36 AC 846 ms
264,852 KB
testcase_37 AC 807 ms
264,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A.sort(reverse=True)
P = [0]*(N+1)
for i, a in enumerate(A): P[i+1] = P[i] + a

ans = 0
for S in range(1<<M):
	wgt = val = 0
	for i in range(M):
		if S>>i&1: wgt += B[i]; val += C[i]
	if wgt <= W:
		ans = max(ans, val + P[min(W - wgt, N)])

print(ans)
0