結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,036 KB
testcase_01 AC 50 ms
56,852 KB
testcase_02 AC 56 ms
65,172 KB
testcase_03 AC 45 ms
57,236 KB
testcase_04 AC 54 ms
63,956 KB
testcase_05 AC 49 ms
62,708 KB
testcase_06 AC 59 ms
63,760 KB
testcase_07 AC 59 ms
64,364 KB
testcase_08 AC 45 ms
56,828 KB
testcase_09 AC 45 ms
55,912 KB
testcase_10 AC 44 ms
56,692 KB
testcase_11 AC 45 ms
56,036 KB
testcase_12 AC 45 ms
56,736 KB
testcase_13 AC 45 ms
56,888 KB
testcase_14 AC 46 ms
57,044 KB
testcase_15 AC 47 ms
56,332 KB
testcase_16 AC 46 ms
56,876 KB
testcase_17 AC 54 ms
65,716 KB
testcase_18 AC 50 ms
63,636 KB
testcase_19 AC 50 ms
63,388 KB
testcase_20 AC 45 ms
56,364 KB
testcase_21 AC 57 ms
64,336 KB
権限があれば一括ダウンロードができます

ソースコード

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