結果

問題 No.617 Nafmo、買い出しに行く
ユーザー Meso MesoMeso Meso
提出日時 2024-06-11 20:02:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 251 bytes
コンパイル時間 1,029 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 67,536 KB
最終ジャッジ日時 2024-06-11 20:02:22
合計ジャッジ時間 10,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 80 ms
15,488 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 131 ms
19,072 KB
testcase_06 AC 966 ms
67,508 KB
testcase_07 AC 967 ms
67,424 KB
testcase_08 RE -
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 969 ms
67,508 KB
testcase_11 AC 961 ms
67,536 KB
testcase_12 AC 1,002 ms
67,504 KB
testcase_13 AC 917 ms
64,048 KB
testcase_14 AC 1,056 ms
67,536 KB
testcase_15 RE -
testcase_16 AC 577 ms
36,716 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 24 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

n, k = map(int, input().split())

W = [int(input()) for _ in range(n)]

ans = []
for i in range(1, n+1):
    for j in list(combinations(W, i)):
        if sum(j) <= k:
            ans.append(sum(j))

print(max(ans))
0