結果

問題 No.1463 Hungry Kanten
ユーザー kaede2020kaede2020
提出日時 2021-04-02 21:51:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 236,252 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-06 09:19:04
合計ジャッジ時間 5,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
//using mint = modint1000000007;
using mint = modint998244353;
template <typename T> bool chmax(T &u, const T z) { if (u < z) {u = z; return true;} else return false; }
template <typename T> bool chmin(T &u, const T z) { if (u > z) {u = z; return true;} else return false; }
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
typedef pair<ll, int> P;
ll gcd(ll x, ll y) { return y ? gcd(y, x % y) : x; }
ll lcm(ll a, ll b){return a * b / gcd(a, b);}

int main(){
  int n,k;
  cin>>n>>k;
  vector<ll>a(n);
  rep(i,n)cin>>a[i];
  map<ll,int>mp;
  rep(i,(1<<n)){
    int bit[20];
    rep(j,n){
      bit[j]=(i/(1<<j))%2;
    }
    ll tmp=0;
    ll tmp_kakeru=1;
    int cnt=0;
    rep(j,n){
      if(bit[j]){
        tmp+=a[j];
        tmp_kakeru*=a[j];
        cnt++;
      }
    }
    if(cnt>=2)mp[tmp]++;
    if(cnt>=2)mp[tmp_kakeru]++;   
  }
  ll ans=mp.size();
  cout<<ans<<endl;
  return 0;
}
0