結果

問題 No.617 Nafmo、買い出しに行く
ユーザー mlihua09mlihua09
提出日時 2020-09-03 01:06:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-05-01 21:56:40
合計ジャッジ時間 5,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,244 KB
testcase_01 AC 33 ms
52,572 KB
testcase_02 AC 49 ms
65,508 KB
testcase_03 AC 70 ms
75,576 KB
testcase_04 AC 36 ms
52,668 KB
testcase_05 AC 83 ms
76,012 KB
testcase_06 AC 311 ms
75,832 KB
testcase_07 AC 311 ms
76,088 KB
testcase_08 AC 34 ms
52,552 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 311 ms
75,704 KB
testcase_11 AC 330 ms
75,708 KB
testcase_12 AC 336 ms
76,088 KB
testcase_13 AC 313 ms
76,096 KB
testcase_14 AC 320 ms
75,972 KB
testcase_15 AC 319 ms
75,832 KB
testcase_16 AC 329 ms
76,180 KB
testcase_17 AC 324 ms
76,152 KB
testcase_18 AC 35 ms
53,004 KB
testcase_19 AC 35 ms
52,668 KB
testcase_20 AC 36 ms
52,116 KB
testcase_21 AC 37 ms
53,600 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