結果

問題 No.617 Nafmo、買い出しに行く
ユーザー suzukeh1suzukeh1
提出日時 2020-05-03 18:38:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 221,168 KB
最終ジャッジ日時 2024-06-22 04:04:19
合計ジャッジ時間 8,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,072 KB
testcase_01 AC 38 ms
52,620 KB
testcase_02 AC 54 ms
65,116 KB
testcase_03 AC 89 ms
81,516 KB
testcase_04 AC 38 ms
53,120 KB
testcase_05 AC 116 ms
89,740 KB
testcase_06 AC 670 ms
221,168 KB
testcase_07 AC 665 ms
220,616 KB
testcase_08 AC 37 ms
52,744 KB
testcase_09 AC 39 ms
51,760 KB
testcase_10 AC 661 ms
220,884 KB
testcase_11 AC 661 ms
220,620 KB
testcase_12 AC 662 ms
221,100 KB
testcase_13 AC 656 ms
204,844 KB
testcase_14 AC 672 ms
221,116 KB
testcase_15 AC 618 ms
145,972 KB
testcase_16 AC 621 ms
145,652 KB
testcase_17 AC 617 ms
145,856 KB
testcase_18 AC 37 ms
52,464 KB
testcase_19 AC 37 ms
52,132 KB
testcase_20 AC 38 ms
52,432 KB
testcase_21 AC 39 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
items = []
Try = []
for shop in range(N):
    items.append(int(input()))

for way in range(2 ** N):
    bug = []
    for item in range(N):
        if ((way >> item) & 1) == 1:
            bug.append(items[item])

    Try.append(sum(bug))

    bug.clear()
movable_items = [i for i in Try if i <= K]
print(max(movable_items))
0