結果

問題 No.473 和と積の和
ユーザー rickythetarickytheta
提出日時 2016-12-23 00:21:04
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,539 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 171,508 KB
実行使用メモリ 296,320 KB
最終ジャッジ日時 2024-05-09 13:12:24
合計ジャッジ時間 10,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 266 ms
42,624 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 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 1 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 2,363 ms
260,992 KB
testcase_26 AC 161 ms
28,160 KB
testcase_27 AC 313 ms
47,232 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 31 ms
5,376 KB
testcase_30 AC 24 ms
5,376 KB
testcase_31 AC 19 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 283 ms
6,944 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 2,706 ms
250,240 KB
testcase_39 AC 2,725 ms
212,096 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define CHMIN(a,b) a=min((a),(b))
#define CHMAX(a,b) a=max((a),(b))

// mod
const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

// floating
typedef double Real;
const Real EPS = 1e-11;
#define EQ0(x) (abs(x)<EPS)
#define EQ(a,b) (abs(a-b)<EPS)
typedef complex<Real> P;

// 
int dp[125][35];

int main(){
  int n;
  int x;
  cin>>n>>x;
  x++;
  // factorize x with n numbers
  set<vi> S;
  S.insert(vi(n,1));
  for(int p=2;p*p<=x;p++){
    while(x%p==0){
      x/=p;
      set<vi> nxt;
      for(const vi &X : S){
        REP(i,n){
          vi add = X;
          add[i] *= p;
          sort(ALL(add));
          nxt.insert(add);
        }
      }
      swap(S,nxt);
    }
  }
  if(x!=1){
    set<vi> nxt;
    for(const vi &X : S){
      REP(i,n){
        vi add = X;
        add[i] *= x;
        sort(ALL(add));
        nxt.insert(add);
      }
    }
    swap(S,nxt);
  }
  int ans = 0;
  for(const vi &X : S){
    if(X[0]!=1)ans++;
  }
  printf("%d\n",ans);
  return 0;
}
0