結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 60 ms
68,864 KB
testcase_03 AC 198 ms
76,160 KB
testcase_04 AC 54 ms
62,976 KB
testcase_05 AC 310 ms
112,484 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 44 ms
51,840 KB
testcase_09 AC 42 ms
52,608 KB
testcase_10 AC 48 ms
59,520 KB
testcase_11 AC 49 ms
60,800 KB
testcase_12 AC 53 ms
62,720 KB
testcase_13 AC 55 ms
62,336 KB
testcase_14 AC 57 ms
64,512 KB
testcase_15 AC 60 ms
66,176 KB
testcase_16 AC 65 ms
69,632 KB
testcase_17 AC 79 ms
77,360 KB
testcase_18 AC 85 ms
76,564 KB
testcase_19 AC 164 ms
94,108 KB
testcase_20 AC 242 ms
97,424 KB
testcase_21 AC 48 ms
59,904 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