結果

問題 No.1463 Hungry Kanten
ユーザー kappybarkappybar
提出日時 2021-04-02 21:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 112,560 KB
最終ジャッジ日時 2024-06-06 09:16:45
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,360 KB
testcase_01 AC 35 ms
51,964 KB
testcase_02 AC 53 ms
68,736 KB
testcase_03 AC 181 ms
75,832 KB
testcase_04 AC 49 ms
63,344 KB
testcase_05 AC 260 ms
112,560 KB
testcase_06 AC 37 ms
52,340 KB
testcase_07 AC 36 ms
52,560 KB
testcase_08 AC 35 ms
52,604 KB
testcase_09 AC 36 ms
53,724 KB
testcase_10 AC 42 ms
60,780 KB
testcase_11 AC 45 ms
61,216 KB
testcase_12 AC 49 ms
63,152 KB
testcase_13 AC 48 ms
63,004 KB
testcase_14 AC 51 ms
65,916 KB
testcase_15 AC 53 ms
67,460 KB
testcase_16 AC 58 ms
70,432 KB
testcase_17 AC 67 ms
77,220 KB
testcase_18 AC 75 ms
76,532 KB
testcase_19 AC 137 ms
94,032 KB
testcase_20 AC 209 ms
96,928 KB
testcase_21 AC 42 ms
61,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

st = set()

for bit in range(1<<n):
	c = 0
	sum_ = 0
	mul = 1
	for i in range(n):
		if bit>>i&1:
			c += 1
			sum_ += a[i]
			mul *= a[i]
	if c >= k:
		st.add(sum_)
		st.add(mul)

print(len(st))
	
		
    
0