結果

問題 No.1463 Hungry Kanten
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-02 21:41:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 123,604 KB
最終ジャッジ日時 2024-06-06 09:14:25
合計ジャッジ時間 2,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 38 ms
53,104 KB
testcase_02 AC 73 ms
76,904 KB
testcase_03 AC 215 ms
76,424 KB
testcase_04 AC 51 ms
64,672 KB
testcase_05 AC 325 ms
123,604 KB
testcase_06 AC 36 ms
52,276 KB
testcase_07 AC 36 ms
52,836 KB
testcase_08 AC 36 ms
51,820 KB
testcase_09 AC 34 ms
52,608 KB
testcase_10 AC 41 ms
60,484 KB
testcase_11 AC 47 ms
62,208 KB
testcase_12 AC 55 ms
66,912 KB
testcase_13 AC 53 ms
64,296 KB
testcase_14 AC 58 ms
70,084 KB
testcase_15 AC 60 ms
71,180 KB
testcase_16 AC 69 ms
77,256 KB
testcase_17 AC 87 ms
79,868 KB
testcase_18 AC 87 ms
76,608 KB
testcase_19 AC 171 ms
94,948 KB
testcase_20 AC 250 ms
102,552 KB
testcase_21 AC 47 ms
63,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
p=set()
for i in range(1<<n):
  q=[]
  l=1
  for j in range(n):
    if i&(1<<j):
      q.append(a[j])
      l*=a[j]
  if len(q)>=k:
    p.add(sum(q))
    p.add(l)
print(len(p))
0