結果

問題 No.617 Nafmo、買い出しに行く
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2020-01-02 23:39:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 458 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 91,604 KB
最終ジャッジ日時 2024-05-02 06:54:26
合計ジャッジ時間 4,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,948 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 36 ms
11,136 KB
testcase_03 AC 194 ms
17,280 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 364 ms
22,508 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

res_list = []

for sign in range(1, n + 1):
    cur_list = list(itertools.combinations(range(0, n), sign))
    for i in range(len(cur_list)):
        cur_sum = 0
        for j in range(sign):
            cur_sum += a_list[cur_list[i][j]]
        res_list.append(cur_sum)
        
print(max([e for e in res_list if e <= k]))
0