結果

問題 No.617 Nafmo、買い出しに行く
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:03:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-09-24 11:15:53
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,836 KB
testcase_01 AC 37 ms
51,752 KB
testcase_02 AC 44 ms
60,632 KB
testcase_03 AC 60 ms
63,468 KB
testcase_04 AC 37 ms
52,932 KB
testcase_05 AC 66 ms
66,544 KB
testcase_06 AC 360 ms
75,384 KB
testcase_07 AC 362 ms
75,668 KB
testcase_08 AC 36 ms
53,112 KB
testcase_09 AC 37 ms
53,416 KB
testcase_10 AC 361 ms
75,816 KB
testcase_11 AC 361 ms
75,592 KB
testcase_12 AC 357 ms
75,380 KB
testcase_13 AC 357 ms
75,780 KB
testcase_14 AC 363 ms
75,800 KB
testcase_15 AC 380 ms
75,724 KB
testcase_16 AC 219 ms
76,336 KB
testcase_17 AC 382 ms
75,776 KB
testcase_18 AC 36 ms
52,744 KB
testcase_19 AC 36 ms
51,876 KB
testcase_20 AC 36 ms
53,076 KB
testcase_21 AC 35 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = [int(input()) for i in range(N)]
ans = 0
for bit in range(1 << N):
    wsum = 0
    for i in range(N):
        if bit >> i & 1:
            wsum += A[i]
    if wsum <= K:
        ans = max(ans, wsum)
print(ans)
0