結果
問題 | No.2730 Two Types Luggage |
ユーザー | rarpipipi |
提出日時 | 2024-04-20 08:53:46 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 405 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 270,912 KB |
最終ジャッジ日時 | 2024-10-12 04:16:54 |
合計ジャッジ時間 | 10,896 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
59,548 KB |
testcase_01 | AC | 33 ms
53,484 KB |
testcase_02 | AC | 46 ms
65,372 KB |
testcase_03 | AC | 36 ms
57,116 KB |
testcase_04 | AC | 77 ms
75,912 KB |
testcase_05 | AC | 49 ms
71,184 KB |
testcase_06 | AC | 42 ms
63,468 KB |
testcase_07 | AC | 34 ms
51,992 KB |
testcase_08 | AC | 34 ms
52,132 KB |
testcase_09 | AC | 57 ms
75,860 KB |
testcase_10 | AC | 51 ms
67,524 KB |
testcase_11 | AC | 367 ms
205,472 KB |
testcase_12 | AC | 831 ms
264,512 KB |
testcase_13 | AC | 278 ms
173,664 KB |
testcase_14 | AC | 329 ms
207,436 KB |
testcase_15 | AC | 439 ms
108,660 KB |
testcase_16 | AC | 155 ms
118,012 KB |
testcase_17 | AC | 617 ms
267,804 KB |
testcase_18 | AC | 470 ms
266,220 KB |
testcase_19 | AC | 67 ms
82,276 KB |
testcase_20 | AC | 190 ms
153,508 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
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())) ans=sum(a[:min(n,w)]) for i in range(1,1<<m): sum_w=0 v=0 for j in range(m): if i>>j&1==1: sum_w+=b[j] v+=c[j] if sum_w>w: continue v+=sum(a[:min((w-sum_w),n)]) ans=max(ans,v) print(ans)