結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
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 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 1 ms
5,376 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 1 ms
5,376 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 1 ms
5,376 KB
testcase_65 AC 1 ms
5,376 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 2 ms
5,376 KB
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 1 ms
5,376 KB
testcase_80 AC 2 ms
5,376 KB
testcase_81 AC 1 ms
5,376 KB
testcase_82 AC 1 ms
5,376 KB
testcase_83 AC 1 ms
5,376 KB
testcase_84 WA -
testcase_85 AC 1 ms
5,376 KB
testcase_86 AC 2 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(ll n){
  string str(std::bitset<62>(n).to_string<char, std::char_traits<char>, std::allocator<char> >());
  int cnt=0;
  REP(i,62){
    if(str[i]=='1')cnt++;
  }
  return cnt;
}

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

ll bainary(ll x){
  ll 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];
  ll 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]);
  print(pre_cnt);
  ans=nPn(pre_cnt);
  print(ans);
  rep(i,1,k){
    int cnt=binally_count(a[i]);
    print(cnt);
    ans=(ans*(nPn(cnt-pre_cnt))%mod)%mod;
    pre_cnt=cnt;
  }
  print(ans);
}
0