結果

問題 No.617 Nafmo、買い出しに行く
ユーザー first_vilfirst_vil
提出日時 2020-08-04 10:21:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2024-09-14 08:14:14
合計ジャッジ時間 5,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,764 KB
testcase_01 AC 38 ms
53,492 KB
testcase_02 AC 52 ms
65,696 KB
testcase_03 AC 77 ms
75,584 KB
testcase_04 AC 38 ms
52,428 KB
testcase_05 AC 95 ms
75,816 KB
testcase_06 AC 394 ms
75,408 KB
testcase_07 AC 394 ms
75,760 KB
testcase_08 AC 38 ms
52,964 KB
testcase_09 AC 37 ms
52,572 KB
testcase_10 AC 385 ms
75,596 KB
testcase_11 AC 398 ms
75,712 KB
testcase_12 AC 428 ms
75,712 KB
testcase_13 AC 392 ms
76,044 KB
testcase_14 AC 391 ms
75,520 KB
testcase_15 AC 381 ms
75,756 KB
testcase_16 AC 407 ms
75,752 KB
testcase_17 AC 389 ms
75,600 KB
testcase_18 AC 38 ms
51,936 KB
testcase_19 AC 39 ms
52,376 KB
testcase_20 AC 38 ms
52,232 KB
testcase_21 AC 37 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=[int(input()) for _ in range(n)]
ans=0
for bit in range(1<<n):
  res=sum([((bit&(1<<i))>>i)*a[i] for i in range(n)])
  if res<=k:
    ans=max(ans,res)
print(ans)
0