結果

問題 No.1701 half price
ユーザー chineristACchineristAC
提出日時 2021-10-08 21:57:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 3,000 ms
コード長 580 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 65,716 KB
最終ジャッジ日時 2024-07-23 04:06:31
合計ジャッジ時間 2,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,W = mi()
A = li()

S = [0 for i in range(1<<N)]
for n in range(N):
    t = 2**n
    for i in range(t,2*t):
        S[i] = A[n] + S[i-t]

res = 0
for bit in range(1,1<<N):
    tmp = bit
    flag = False
    while tmp:
        k = S[tmp]//2 + S[bit-tmp]
        if k==W:
            flag = True
        tmp = (tmp-1)&bit
    if S[bit]==W:
        flag = True
    res += flag

print(res)
0