結果

問題 No.1463 Hungry Kanten
ユーザー shiomusubi496shiomusubi496
提出日時 2021-04-02 22:03:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 150,676 KB
最終ジャッジ日時 2024-12-23 23:34:59
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
ans=[]
for i in range(1<<N):
  cnt=0
  for j in range(N):
    cnt+=(i>>j)&1
  if cnt<K:
    continue
  a=0
  b=1
  for j in range(N):
    if (i>>j)&1:
      a+=A[j]
      b*=A[j]
  ans+=[a,b]
print(len(set(ans)))
0