結果

問題 No.617 Nafmo、買い出しに行く
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2020-01-03 08:56:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 175,624 KB
最終ジャッジ日時 2024-05-02 07:04:45
合計ジャッジ時間 6,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
59,140 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 51 ms
61,184 KB
testcase_03 AC 72 ms
73,216 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 85 ms
87,168 KB
testcase_06 AC 511 ms
175,624 KB
testcase_07 AC 507 ms
175,624 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 43 ms
51,968 KB
testcase_10 AC 505 ms
175,620 KB
testcase_11 AC 508 ms
175,504 KB
testcase_12 AC 506 ms
175,624 KB
testcase_13 AC 492 ms
159,752 KB
testcase_14 AC 502 ms
175,524 KB
testcase_15 AC 443 ms
119,192 KB
testcase_16 AC 444 ms
119,200 KB
testcase_17 AC 446 ms
119,068 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input_list = list(map(int,input().split()))
n, k = input_list
a_list = [int(input()) for i in range(n)]

res_list = []

for i in range(2 ** n):
    res_e = 0
    for j in range(n):
        if (i >> j) & 1:
            res_e += a_list[j]
    res_list.append(res_e)
    
res = max([e for e in res_list if e <= k])

print(res)
0