結果

問題 No.1701 half price
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:12:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-23 04:36:53
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 72 ms
72,576 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 73 ms
72,832 KB
testcase_05 AC 47 ms
61,696 KB
testcase_06 AC 250 ms
75,952 KB
testcase_07 AC 227 ms
75,904 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 38 ms
52,572 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 284 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for b in range(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