結果

問題 No.2730 Two Types Luggage
ユーザー hiro1729hiro1729
提出日時 2024-03-14 17:35:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,817 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 269,316 KB
最終ジャッジ日時 2024-09-29 23:45:14
合計ジャッジ時間 23,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 74 ms
75,520 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 188 ms
76,672 KB
testcase_05 AC 133 ms
77,056 KB
testcase_06 AC 47 ms
61,952 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 121 ms
76,800 KB
testcase_10 AC 52 ms
68,480 KB
testcase_11 AC 401 ms
253,304 KB
testcase_12 AC 1,689 ms
267,456 KB
testcase_13 AC 324 ms
211,492 KB
testcase_14 AC 413 ms
269,316 KB
testcase_15 AC 1,404 ms
107,136 KB
testcase_16 AC 245 ms
139,312 KB
testcase_17 AC 443 ms
263,760 KB
testcase_18 AC 419 ms
257,460 KB
testcase_19 AC 74 ms
84,352 KB
testcase_20 AC 198 ms
154,940 KB
testcase_21 AC 396 ms
262,556 KB
testcase_22 AC 478 ms
266,224 KB
testcase_23 AC 231 ms
94,464 KB
testcase_24 AC 330 ms
182,164 KB
testcase_25 AC 368 ms
254,664 KB
testcase_26 AC 141 ms
113,860 KB
testcase_27 AC 441 ms
261,664 KB
testcase_28 AC 213 ms
163,144 KB
testcase_29 AC 425 ms
255,840 KB
testcase_30 AC 1,323 ms
94,592 KB
testcase_31 AC 346 ms
207,688 KB
testcase_32 AC 301 ms
174,312 KB
testcase_33 AC 1,817 ms
268,424 KB
testcase_34 AC 1,787 ms
269,280 KB
testcase_35 AC 1,773 ms
268,776 KB
testcase_36 AC 1,774 ms
268,948 KB
testcase_37 AC 1,761 ms
268,996 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)
A_ac = [0]
for i in A:
	A_ac.append(A_ac[-1] + i)
ans = 0
for b in range(1 << M):
	B_sum = sum(B[i] for i in range(M) if b & (1 << i))
	C_sum = sum(C[i] for i in range(M) if b & (1 << i))
	if B_sum <= W:
		ans = max(ans, A_ac[min(N, W - B_sum)] + C_sum)
print(ans)
0