結果

問題 No.1701 half price
ユーザー mesame3993mesame3993
提出日時 2021-10-08 23:19:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 81,916 KB
最終ジャッジ日時 2024-07-23 07:13:22
合計ジャッジ時間 4,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,636 KB
testcase_01 AC 40 ms
53,856 KB
testcase_02 AC 161 ms
77,676 KB
testcase_03 AC 40 ms
53,816 KB
testcase_04 AC 155 ms
77,612 KB
testcase_05 AC 57 ms
67,380 KB
testcase_06 AC 784 ms
81,820 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
53,120 KB
testcase_10 AC 39 ms
52,756 KB
testcase_11 AC 39 ms
53,372 KB
testcase_12 AC 40 ms
53,592 KB
testcase_13 AC 39 ms
52,876 KB
testcase_14 AC 40 ms
53,484 KB
testcase_15 AC 41 ms
54,152 KB
testcase_16 AC 39 ms
52,832 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 701 ms
81,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n, w = map(int, input().split())
a = list(map(int, input().split()))
b = [i // 2 for i in a]
ans = 0
it = []
items = [i for i in range(n)]
for bits in product([0, 1], repeat=n):
	tmp = [[x] for x, bit in zip(items, bits) if bit == 1]
	it.append(tmp)
for i in it:
	l = []
	for j in range(len(i)):
		l.append([a[i[j][0]], b[i[j][0]]])
	st = []
	for k in product(*l):
		k = sorted(k)
		if sum(k) == w and k not in st:
			st.append(k)
			ans += 1
print(ans)
0