結果

問題 No.1701 half price
ユーザー prussian_coderprussian_coder
提出日時 2022-03-22 21:35:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 360 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2024-10-10 15:53:37
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,316 KB
testcase_01 AC 38 ms
53,380 KB
testcase_02 AC 136 ms
76,120 KB
testcase_03 AC 38 ms
53,944 KB
testcase_04 AC 130 ms
76,092 KB
testcase_05 AC 61 ms
70,584 KB
testcase_06 AC 496 ms
76,580 KB
testcase_07 AC 502 ms
76,452 KB
testcase_08 AC 37 ms
52,764 KB
testcase_09 AC 39 ms
53,116 KB
testcase_10 AC 37 ms
51,992 KB
testcase_11 AC 38 ms
52,652 KB
testcase_12 AC 37 ms
53,692 KB
testcase_13 AC 37 ms
52,580 KB
testcase_14 AC 37 ms
53,264 KB
testcase_15 AC 39 ms
54,696 KB
testcase_16 AC 36 ms
52,876 KB
testcase_17 AC 72 ms
76,460 KB
testcase_18 AC 38 ms
54,236 KB
testcase_19 AC 44 ms
60,208 KB
testcase_20 AC 38 ms
53,752 KB
testcase_21 AC 498 ms
76,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=[int(x) for x in input().split()]
ans=0

def two(f):
	if f:
		return 2
	else:
		return 1

for i in range(1<<N):
	if i==0:
		continue
	flag=False
	X=[A[j] for j in range(N) if (i>>j)&1]
	M=len(X)
	for k in range(1<<M):
		if sum([X[j]//(two((k>>j)&1)) for j in range(M)])==K:
			flag=True
			break
	if flag:
		ans+=1
print(ans)
	
	
0