結果

問題 No.2730 Two Types Luggage
ユーザー anonymouslyanonymously
提出日時 2024-04-19 21:56:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 406 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 274,096 KB
最終ジャッジ日時 2024-10-11 15:01:10
合計ジャッジ時間 21,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,800 KB
testcase_01 AC 36 ms
52,072 KB
testcase_02 AC 71 ms
73,912 KB
testcase_03 AC 35 ms
52,296 KB
testcase_04 AC 212 ms
76,756 KB
testcase_05 AC 144 ms
76,968 KB
testcase_06 AC 50 ms
61,700 KB
testcase_07 AC 36 ms
52,300 KB
testcase_08 AC 38 ms
52,396 KB
testcase_09 AC 129 ms
76,616 KB
testcase_10 AC 51 ms
67,320 KB
testcase_11 AC 374 ms
206,948 KB
testcase_12 AC 1,372 ms
257,944 KB
testcase_13 AC 301 ms
175,116 KB
testcase_14 AC 371 ms
222,828 KB
testcase_15 AC 1,007 ms
97,024 KB
testcase_16 AC 207 ms
121,752 KB
testcase_17 AC 421 ms
232,632 KB
testcase_18 AC 397 ms
226,328 KB
testcase_19 AC 70 ms
79,004 KB
testcase_20 AC 186 ms
132,252 KB
testcase_21 AC 375 ms
216,012 KB
testcase_22 AC 464 ms
249,564 KB
testcase_23 AC 246 ms
89,600 KB
testcase_24 AC 320 ms
156,072 KB
testcase_25 AC 343 ms
208,736 KB
testcase_26 AC 123 ms
96,000 KB
testcase_27 AC 422 ms
214,656 KB
testcase_28 AC 196 ms
137,432 KB
testcase_29 AC 401 ms
234,368 KB
testcase_30 AC 1,732 ms
89,964 KB
testcase_31 AC 323 ms
169,652 KB
testcase_32 AC 272 ms
151,004 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,W=map(int,input().split())
A=[int(_) for _ in input().split()]
B=[int(_) for _ in input().split()]
C=[int(_) for _ in input().split()]

A.sort(reverse=True)
S=[0]
for i in range(n):
    S.append(S[-1]+A[i])

V=0
for i in range(1<<m):
    w=sum(B[j] for j in range(m) if i & (1<<j))
    if w<=W:
        v=sum(C[j] for j in range(m) if i & (1<<j))+S[min(W-w,n)]
        if v>V:
            V=v

print(V)
0