結果

問題 No.617 Nafmo、買い出しに行く
ユーザー mlihua09mlihua09
提出日時 2020-09-03 01:06:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,012 KB
最終ジャッジ日時 2024-11-22 04:54:08
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,496 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 55 ms
65,280 KB
testcase_03 AC 87 ms
75,776 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 111 ms
75,780 KB
testcase_06 AC 459 ms
75,776 KB
testcase_07 AC 474 ms
75,648 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,456 KB
testcase_10 AC 462 ms
75,648 KB
testcase_11 AC 467 ms
75,904 KB
testcase_12 AC 456 ms
75,868 KB
testcase_13 AC 467 ms
75,776 KB
testcase_14 AC 462 ms
75,852 KB
testcase_15 AC 483 ms
75,764 KB
testcase_16 AC 476 ms
75,648 KB
testcase_17 AC 464 ms
76,012 KB
testcase_18 AC 39 ms
51,712 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, K = map(int, input().split())

A = [int(input()) for i in range(N)]

from itertools import product

ans = 0

for i in product(range(2), repeat=N):
    
    x = sum([A[j] * i[j] for j in range(N)])
    
    if x <= K:
        ans = max(ans, x)
        
print(ans)
0