結果

問題 No.617 Nafmo、買い出しに行く
ユーザー roarisroaris
提出日時 2020-12-11 15:09:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-09-19 21:18:58
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,220 KB
testcase_01 AC 35 ms
53,032 KB
testcase_02 AC 41 ms
61,360 KB
testcase_03 AC 56 ms
63,736 KB
testcase_04 AC 37 ms
52,704 KB
testcase_05 AC 62 ms
65,928 KB
testcase_06 AC 343 ms
75,584 KB
testcase_07 AC 350 ms
75,556 KB
testcase_08 AC 35 ms
52,880 KB
testcase_09 AC 34 ms
51,956 KB
testcase_10 AC 347 ms
75,760 KB
testcase_11 AC 350 ms
75,420 KB
testcase_12 AC 349 ms
75,904 KB
testcase_13 AC 356 ms
75,660 KB
testcase_14 AC 352 ms
75,696 KB
testcase_15 AC 370 ms
75,776 KB
testcase_16 AC 218 ms
75,736 KB
testcase_17 AC 369 ms
75,492 KB
testcase_18 AC 35 ms
52,760 KB
testcase_19 AC 33 ms
52,196 KB
testcase_20 AC 34 ms
51,752 KB
testcase_21 AC 35 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
A = [int(input()) for _ in range(N)]
ans = 0

for S in range(1<<N):
    c = 0
    
    for i in range(N):
        if (S>>i)&1:
            c += A[i]
    
    if c<=K:
        ans = max(ans, c)

print(ans)
0