結果

問題 No.617 Nafmo、買い出しに行く
ユーザー iad_2889iad_2889
提出日時 2019-05-16 14:02:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 75,812 KB
最終ジャッジ日時 2024-09-17 05:30:37
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,408 KB
testcase_01 AC 38 ms
52,000 KB
testcase_02 AC 48 ms
62,156 KB
testcase_03 AC 64 ms
75,264 KB
testcase_04 AC 37 ms
52,916 KB
testcase_05 AC 71 ms
75,404 KB
testcase_06 AC 214 ms
75,760 KB
testcase_07 AC 212 ms
75,668 KB
testcase_08 AC 39 ms
52,348 KB
testcase_09 AC 40 ms
52,340 KB
testcase_10 AC 221 ms
75,284 KB
testcase_11 AC 219 ms
75,484 KB
testcase_12 AC 211 ms
75,676 KB
testcase_13 AC 219 ms
75,580 KB
testcase_14 AC 216 ms
75,812 KB
testcase_15 AC 206 ms
75,584 KB
testcase_16 AC 215 ms
75,804 KB
testcase_17 AC 218 ms
75,744 KB
testcase_18 AC 38 ms
52,748 KB
testcase_19 AC 37 ms
53,568 KB
testcase_20 AC 36 ms
52,196 KB
testcase_21 AC 38 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations as com
N,K = map(int,input().split())
products = [int(input()) for x in range(N)]
max_p = 0
for n in range(1,N + 1):
    for p_set in com(products,n):
        if max_p < sum(p_set) <= K:
            max_p = sum(p_set)
print(max_p)
0