結果

問題 No.462 6日知らずのコンピュータ
ユーザー ttakanottakano
提出日時 2017-12-03 11:56:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,422 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 163,948 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 05:04:56
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2 ms
5,376 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 2 ms
5,376 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 1 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 1 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
testcase_71 AC 1 ms
5,376 KB
testcase_72 WA -
testcase_73 AC 1 ms
5,376 KB
testcase_74 WA -
testcase_75 AC 2 ms
5,376 KB
testcase_76 WA -
testcase_77 WA -
testcase_78 AC 2 ms
5,376 KB
testcase_79 AC 1 ms
5,376 KB
testcase_80 WA -
testcase_81 AC 1 ms
5,376 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 2 ms
5,376 KB
testcase_85 AC 2 ms
5,376 KB
testcase_86 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i]<<" ";}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000007; //10^9+7

int binally_count(int n){
  string str(std::bitset<32>(n).to_string<char, std::char_traits<char>, std::allocator<char> >());
  int cnt=0;
  REP(i,32){
    if(str[i]=='1')cnt++;
  }
  return cnt;
}

ll nPn(int n){
  int sum=1;
  rep(i,1,n+1)sum*=i;
  return sum;
}

int bainary(ll x){
  int y,i,ans;
	ans=0;
	i=0;

	while (x>0)
	{
		y=x%2;
		ans=ans+y*pow(10,i);
		x=x/2;
		i+=1;
	}
	return ans;
}

bool check(ll a,ll b){
  string ab=to_string(bainary(a));
  string bb=to_string(bainary(b));
  while(ab.size()!=bb.size()){bb="0"+bb;}
  REP(i,ab.size()){
    if(ab[i]=='0'&&bb[i]=='1'){
      return false;
    }
  }
  return true;
}

int main(){
  int n,k;
  cin>>n>>k;
  ll a[61];
  REP(i,n)cin>>a[i];
  int ans=0;
  if(k==0){
    ans=nPn(n);
    print(ans);
    return 0;
  }
  sort(a,a+k);
  rep(i,1,k){
    if(check(a[i],a[i-1])==false){
      print(0);
      return 0;
    }
  }
  int pre_cnt=binally_count(a[0]);
  ans=nPn(pre_cnt);
  rep(i,1,k){
    int cnt=binally_count(a[i]);
    ans*=nPn(cnt-pre_cnt);
    pre_cnt=cnt;
  }
  print(ans);
}
  
0