結果

問題 No.1701 half price
ユーザー k_o_pasturek_o_pasture
提出日時 2021-10-08 23:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 3,000 ms
コード長 772 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 100,836 KB
最終ジャッジ日時 2024-07-23 07:33:31
合計ジャッジ時間 3,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
import sys

def main():
	input = sys.stdin.readline
	N,W = map(int,input().split())
	A = list(map(int,input().split()))
	bit_lst = list(product([False, True], repeat=N))
	goods_lst = []
	for bits in bit_lst[1:]:
		goods = []
		for i, bit in enumerate(bits):
			if bit:
				goods.append(A[i])
		goods_lst.append(goods)

	# print(goods_lst)

	receipt = []
	for goods, bits in zip(goods_lst, bit_lst[1:]):
		even_lst = list(product([False, True], repeat=len(goods)))
		
		# print(even_lst, goods)
		for evens in even_lst:
			yen = 0
			for i, even in enumerate(evens):
				if even:
					yen += goods[i]
				else:
					yen += goods[i] // 2
			if W == yen:
				receipt.append(bits)

		
	print(len(set(receipt)))

if __name__ == '__main__':
	main()
0