結果

問題 No.2730 Two Types Luggage
ユーザー miho-4miho-4
提出日時 2024-04-19 22:55:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 267,212 KB
最終ジャッジ日時 2024-10-11 16:54:18
合計ジャッジ時間 16,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 53 ms
60,544 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 69 ms
62,848 KB
testcase_05 AC 51 ms
60,160 KB
testcase_06 AC 48 ms
59,392 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 53 ms
60,544 KB
testcase_10 AC 60 ms
66,688 KB
testcase_11 AC 391 ms
205,704 KB
testcase_12 AC 872 ms
264,376 KB
testcase_13 AC 327 ms
173,856 KB
testcase_14 AC 392 ms
207,108 KB
testcase_15 AC 475 ms
107,520 KB
testcase_16 AC 183 ms
118,324 KB
testcase_17 AC 476 ms
231,376 KB
testcase_18 AC 451 ms
231,016 KB
testcase_19 AC 78 ms
78,976 KB
testcase_20 AC 205 ms
132,060 KB
testcase_21 AC 380 ms
203,684 KB
testcase_22 AC 504 ms
256,368 KB
testcase_23 AC 111 ms
89,600 KB
testcase_24 AC 239 ms
142,276 KB
testcase_25 AC 397 ms
207,064 KB
testcase_26 AC 148 ms
102,272 KB
testcase_27 AC 380 ms
202,524 KB
testcase_28 AC 222 ms
140,624 KB
testcase_29 AC 451 ms
232,684 KB
testcase_30 AC 448 ms
92,032 KB
testcase_31 AC 327 ms
168,908 KB
testcase_32 AC 297 ms
174,320 KB
testcase_33 AC 876 ms
266,060 KB
testcase_34 AC 883 ms
267,212 KB
testcase_35 AC 887 ms
263,900 KB
testcase_36 AC 905 ms
263,896 KB
testcase_37 AC 877 ms
263,888 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=1)
T=[0]*(n+1)
for i in range(n):
	T[i+1]+=T[i]
	T[i+1]+=A[i]
	
ans=0

for bit in range(2**m):
	W,V=0,0
	for i in range(m):
		if bit>>i&1:
			W+=B[i]
			V+=C[i]
	if W<=w:
		ans=max(ans,V+T[min(w-W,n)])
print(ans)
0