結果

問題 No.617 Nafmo、買い出しに行く
ユーザー nohakai3nohakai3
提出日時 2022-08-01 14:43:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 119,864 KB
最終ジャッジ日時 2024-07-22 03:57:24
合計ジャッジ時間 6,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,868 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 47 ms
61,496 KB
testcase_03 AC 70 ms
68,984 KB
testcase_04 AC 38 ms
53,532 KB
testcase_05 AC 91 ms
79,852 KB
testcase_06 AC 490 ms
119,188 KB
testcase_07 AC 486 ms
119,864 KB
testcase_08 AC 37 ms
53,276 KB
testcase_09 AC 37 ms
53,384 KB
testcase_10 AC 551 ms
119,660 KB
testcase_11 AC 554 ms
119,384 KB
testcase_12 AC 555 ms
119,640 KB
testcase_13 AC 564 ms
119,500 KB
testcase_14 AC 556 ms
119,272 KB
testcase_15 AC 544 ms
119,568 KB
testcase_16 AC 548 ms
119,388 KB
testcase_17 AC 539 ms
119,268 KB
testcase_18 AC 38 ms
53,216 KB
testcase_19 AC 38 ms
52,388 KB
testcase_20 AC 39 ms
53,164 KB
testcase_21 AC 37 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
l=[]
for i in range(n):
    s=int(input())
    l.append(s)

l2=[]
for bit in range(1<<n):
    p=0
    for i in range(n):
        if bit&(1<<i):
            p+=l[i]
    l2.append(p)

l2.sort()
ans=0
for x in l2:
    if ans<=x<=k:
        ans=x

print(ans)
0