結果

問題 No.617 Nafmo、買い出しに行く
ユーザー takakintakakin
提出日時 2020-05-04 11:46:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 75,996 KB
最終ジャッジ日時 2024-06-24 00:27:42
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,928 KB
testcase_01 AC 39 ms
52,344 KB
testcase_02 AC 46 ms
61,804 KB
testcase_03 AC 61 ms
64,756 KB
testcase_04 AC 37 ms
53,028 KB
testcase_05 AC 71 ms
66,156 KB
testcase_06 AC 381 ms
75,552 KB
testcase_07 AC 380 ms
75,996 KB
testcase_08 AC 37 ms
52,440 KB
testcase_09 AC 37 ms
53,080 KB
testcase_10 AC 377 ms
75,648 KB
testcase_11 AC 375 ms
75,836 KB
testcase_12 AC 382 ms
75,688 KB
testcase_13 AC 380 ms
75,664 KB
testcase_14 AC 379 ms
75,640 KB
testcase_15 AC 383 ms
75,608 KB
testcase_16 AC 253 ms
75,816 KB
testcase_17 AC 381 ms
75,672 KB
testcase_18 AC 38 ms
52,536 KB
testcase_19 AC 37 ms
52,552 KB
testcase_20 AC 37 ms
52,696 KB
testcase_21 AC 37 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,k=map(int,input().split())
A=[int(input()) for _ in range(n)]
ans=0
for i in range(1<<n):
  cur=0
  for j in range(n):
    if i&1<<j:
      cur+=A[j]
  if cur<=k:
    ans=max(ans,cur)
print(ans)
0