結果

問題 No.617 Nafmo、買い出しに行く
ユーザー motor_radialmotor_radial
提出日時 2019-08-16 20:09:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,005 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 11,768 KB
実行使用メモリ 83,492 KB
最終ジャッジ日時 2023-10-23 20:08:30
合計ジャッジ時間 10,620 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,116 KB
testcase_01 AC 27 ms
10,100 KB
testcase_02 AC 29 ms
10,336 KB
testcase_03 AC 84 ms
16,016 KB
testcase_04 AC 29 ms
10,100 KB
testcase_05 AC 143 ms
19,696 KB
testcase_06 AC 993 ms
83,492 KB
testcase_07 AC 1,005 ms
83,492 KB
testcase_08 AC 28 ms
10,100 KB
testcase_09 AC 27 ms
10,100 KB
testcase_10 AC 990 ms
83,492 KB
testcase_11 AC 984 ms
83,492 KB
testcase_12 AC 984 ms
83,492 KB
testcase_13 AC 917 ms
82,172 KB
testcase_14 AC 992 ms
83,492 KB
testcase_15 AC 625 ms
57,964 KB
testcase_16 AC 617 ms
57,964 KB
testcase_17 AC 610 ms
57,964 KB
testcase_18 AC 28 ms
10,100 KB
testcase_19 AC 27 ms
10,100 KB
testcase_20 AC 27 ms
10,100 KB
testcase_21 AC 28 ms
10,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,K=map(int,input().split())
A=[int(input()) for _ in range(N)]
ans=[]
for i in range(N+1):
    s=list(itertools.combinations(A,i))
    for j in s:
        if K>=sum(j):
            ans.append(sum(j))
print(max(ans))
0