結果

問題 No.1701 half price
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:13:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 388 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,112 KB
最終ジャッジ日時 2024-07-23 04:38:47
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,344 KB
testcase_01 AC 42 ms
52,796 KB
testcase_02 AC 76 ms
73,280 KB
testcase_03 AC 41 ms
54,284 KB
testcase_04 AC 73 ms
73,212 KB
testcase_05 AC 47 ms
62,592 KB
testcase_06 AC 254 ms
76,064 KB
testcase_07 AC 230 ms
76,016 KB
testcase_08 AC 37 ms
53,620 KB
testcase_09 AC 39 ms
52,892 KB
testcase_10 AC 38 ms
53,424 KB
testcase_11 AC 40 ms
52,808 KB
testcase_12 AC 38 ms
52,820 KB
testcase_13 AC 39 ms
52,632 KB
testcase_14 AC 40 ms
52,960 KB
testcase_15 AC 40 ms
52,488 KB
testcase_16 AC 39 ms
52,944 KB
testcase_17 AC 51 ms
64,008 KB
testcase_18 AC 39 ms
52,648 KB
testcase_19 AC 43 ms
59,132 KB
testcase_20 AC 39 ms
53,480 KB
testcase_21 AC 292 ms
76,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for b in range(1, 1 << n):
	cnt = 0
	l = []
	for i in range(n):
		if b >> i & 1:
			cnt += a[i]
			l.append(a[i])
	f = False
	if cnt == w: f = True
	for b2 in range(1 << len(l)):
		cnt2 = cnt
		for i in range(len(l)):
			if b2 >> i & 1:
				cnt2 -= l[i] // 2
		if cnt2 == w: f = True; break
	ans += f
print(ans)
0