結果

問題 No.1463 Hungry Kanten
ユーザー Noboru2020Noboru2020
提出日時 2021-04-02 21:28:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 462 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 173,456 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-06-06 09:08:24
合計ジャッジ時間 2,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 214 ms
15,616 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 80 ms
9,728 KB
testcase_20 AC 119 ms
11,008 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N,K;cin>>N>>K;
  vector<int>vec(N);
  for(int &i:vec){
    cin>>i;
  }
  set<int>ans;
  for(int i=0;i<(1<<N);i++){
    int memo=0,sum=0,product=1;
    for(int j=0;j<N;j++){
      if(i&(1<<j)){
        memo++;
        sum+=vec[j];
        product*=vec[j];
      }
    }
    if(memo>=K){
      ans.insert(sum);
      ans.insert(product);
    }
  }
  cout<<ans.size()<<endl;
}
0