結果

問題 No.617 Nafmo、買い出しに行く
ユーザー okadukiokaduki
提出日時 2017-12-18 19:13:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-12-16 00:16:18
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
64,664 KB
testcase_01 AC 51 ms
55,508 KB
testcase_02 AC 65 ms
69,332 KB
testcase_03 AC 97 ms
76,512 KB
testcase_04 AC 52 ms
54,784 KB
testcase_05 AC 112 ms
76,288 KB
testcase_06 AC 425 ms
76,288 KB
testcase_07 AC 420 ms
76,672 KB
testcase_08 AC 48 ms
54,528 KB
testcase_09 AC 51 ms
54,528 KB
testcase_10 AC 424 ms
76,672 KB
testcase_11 AC 420 ms
76,672 KB
testcase_12 AC 424 ms
76,656 KB
testcase_13 AC 414 ms
76,288 KB
testcase_14 AC 427 ms
76,288 KB
testcase_15 AC 429 ms
76,160 KB
testcase_16 AC 438 ms
76,288 KB
testcase_17 AC 424 ms
76,264 KB
testcase_18 AC 52 ms
54,656 KB
testcase_19 AC 49 ms
54,528 KB
testcase_20 AC 48 ms
54,912 KB
testcase_21 AC 48 ms
55,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

n,k = [int(x) for x in input().split()]
xs = [int(input()) for _ in range(n)]

ans = 0
for b in range(0,1<<n):
    s = reduce(lambda iv, x: (iv[0]+1, iv[1]+(x if b>>iv[0]&1 else 0)), xs, (0,0))
    if s[1] <= k: ans = max(ans, s[1])
print(ans)
0