結果

問題 No.617 Nafmo、買い出しに行く
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2020-01-03 08:56:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 175,840 KB
最終ジャッジ日時 2024-11-22 18:54:52
合計ジャッジ時間 6,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,136 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 47 ms
61,008 KB
testcase_03 AC 74 ms
73,344 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 84 ms
86,912 KB
testcase_06 AC 504 ms
175,840 KB
testcase_07 AC 506 ms
175,748 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 506 ms
175,752 KB
testcase_11 AC 503 ms
175,752 KB
testcase_12 AC 506 ms
175,496 KB
testcase_13 AC 493 ms
159,884 KB
testcase_14 AC 515 ms
175,496 KB
testcase_15 AC 443 ms
119,328 KB
testcase_16 AC 448 ms
119,452 KB
testcase_17 AC 444 ms
119,068 KB
testcase_18 AC 38 ms
51,584 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 38 ms
51,840 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