結果

問題 No.1463 Hungry Kanten
ユーザー y61mpnly61mpnl
提出日時 2021-04-02 21:32:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,496 KB
実行使用メモリ 109,156 KB
最終ジャッジ日時 2024-06-06 09:11:03
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,336 KB
testcase_01 AC 35 ms
52,272 KB
testcase_02 AC 66 ms
72,828 KB
testcase_03 AC 222 ms
75,712 KB
testcase_04 AC 53 ms
65,412 KB
testcase_05 AC 288 ms
109,156 KB
testcase_06 AC 35 ms
52,760 KB
testcase_07 AC 34 ms
52,408 KB
testcase_08 AC 36 ms
52,960 KB
testcase_09 AC 37 ms
52,232 KB
testcase_10 AC 45 ms
61,268 KB
testcase_11 AC 49 ms
64,228 KB
testcase_12 AC 52 ms
65,056 KB
testcase_13 AC 53 ms
65,284 KB
testcase_14 AC 58 ms
67,752 KB
testcase_15 AC 59 ms
69,784 KB
testcase_16 AC 65 ms
73,632 KB
testcase_17 AC 79 ms
79,500 KB
testcase_18 AC 90 ms
76,568 KB
testcase_19 AC 154 ms
93,272 KB
testcase_20 AC 248 ms
99,976 KB
testcase_21 AC 50 ms
62,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))

st = set()
for i in range(1<<n):
	tmp = cnt = 0
	for j in range(n):
		if (i>>j)&1:
			tmp += a[j]
			cnt += 1
	if cnt>=k:
		st.add(tmp)

for i in range(1<<n):
	tmp = 1
	cnt = 0
	for j in range(n):
		if (i>>j)&1:
			tmp *= a[j]
			cnt += 1
	if cnt>=k:
		st.add(tmp)

print(len(st))
0