結果

問題 No.1701 half price
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 3,000 ms
コード長 465 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-23 04:55:43
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,W=map(int,readline().split())
A=list(map(int,readline().split()))
ans=0
for bit in range(1,1<<N):
    lst=[A[i] for i in range(N) if bit>>i&1]
    l=len(lst)
    for bit in range(1<<l):
        price=[]
        for i in range(l):
            if bit>>i&1:
                price.append(lst[i]//2)
            else:
                price.append(lst[i])
        if sum(price)==W:
            ans+=1
            break
print(ans)
0