結果

問題 No.1701 half price
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 19:54:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-08-08 19:54:49
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,420 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
58,200 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 34 ms
52,956 KB
testcase_09 AC 36 ms
52,792 KB
testcase_10 AC 35 ms
52,684 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 35 ms
52,684 KB
testcase_15 AC 35 ms
53,176 KB
testcase_16 AC 35 ms
52,152 KB
testcase_17 AC 56 ms
70,740 KB
testcase_18 AC 36 ms
52,972 KB
testcase_19 AC 40 ms
60,416 KB
testcase_20 AC 36 ms
52,404 KB
testcase_21 AC 67 ms
76,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w=map(int,input().split())
a=list(map(int,input().split()))
c=0
for i in range(1,1<<n):
	b=[a[j] for j in range(n) if (i>>j)&1]
	if sum(b)==w:
		c+=1
	elif sum(b)>w:
		if (sum(b)-w)*2 in b:
			c+=1
print(c)
0