結果

問題 No.473 和と積の和
ユーザー FF256grhyFF256grhy
提出日時 2016-12-23 13:15:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 604 ms / 3,000 ms
コード長 3,182 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 187,500 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-05-09 14:40:02
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,376 KB
testcase_01 AC 2 ms
5,504 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 169 ms
14,720 KB
testcase_04 AC 2 ms
5,504 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,504 KB
testcase_08 AC 2 ms
5,504 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,504 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,504 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,504 KB
testcase_16 AC 2 ms
5,504 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,504 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,504 KB
testcase_23 AC 4 ms
5,632 KB
testcase_24 AC 6 ms
5,632 KB
testcase_25 AC 604 ms
29,568 KB
testcase_26 AC 124 ms
12,416 KB
testcase_27 AC 170 ms
14,336 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,504 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 410 ms
23,040 KB
testcase_35 AC 390 ms
22,784 KB
testcase_36 AC 4 ms
5,760 KB
testcase_37 AC 2 ms
5,632 KB
testcase_38 AC 374 ms
22,528 KB
testcase_39 AC 219 ms
16,640 KB
testcase_40 AC 236 ms
17,024 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 48 ms
8,064 KB
testcase_43 AC 113 ms
11,648 KB
testcase_44 AC 190 ms
15,232 KB
testcase_45 AC 2 ms
5,504 KB
testcase_46 AC 2 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long   signed int LL;
typedef long long unsigned int LU;

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define inc( i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec( i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))

#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define UB upper_bound
#define LB lower_bound
#define PQ priority_queue

#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
#define  FOR(i, v) for(auto i =  v.begin(); i !=  v.end(); ++i)
#define RFOR(i, v) for(auto i = v.rbegin(); i != v.rend(); ++i)

template<typename T> bool setmin(T & a, T b) { if(a <= b) { return false; } else { a = b; return true; } }
template<typename T> bool setmax(T & a, T b) { if(b <= a) { return false; } else { a = b; return true; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

template<typename T> ostream & operator<<(ostream & os, const vector<T> & v) {
	os << "[";
	FOR(it, v) {
		if(it != v.begin()) { os << ", "; }
		os << *it;
	}
	os << "]";
	return os;
}
template<typename F, typename S> ostream & operator<<(ostream & os, const pair<F, S> & p) {
	os << "<" << p.FI << ", " << p.SE << ">";
	return os;
}

// ---- ----

int n, x;
vector<pair<int, int>> pe;
int pn, et;

vector<pair<LL, int>> ivs;
int dn;
map<LL, int> vi;

// int dp[30][1400][1400];
map<int, int> dp[30][1400];

int main() {
	cin >> n >> x;
	x++;
	if(n >= 30) { cout << 0 << endl; return 0; }
	
	int xx = x;
	for(int i = 2; i * i <= xx; i++) {
		if(xx % i == 0) {
			int j = 0;
			while(xx % i == 0) {
				xx /= i;
				j++;
			}
			pe.EB(i, j);
		}
	}
	if(xx != 1) { pe.EB(xx, 1); }
	pn = pe.size();
	inc(i, pn) { et += pe[i].SE; }
	if(et == 1) { cout << 0 << endl; return 0; }
	
	vector<int> d;
	inc(i, pn) { d.PB(0); }
	LL v = 1, s = 0;
	int c = 0;
	while(true) {
		ivs.EB(v, s);
		
		c = 0;
		while(c < pn && d[c] == pe[c].SE) { inc(i, pe[c].SE) { v /= pe[c].FI; } s -= pe[c].SE; d[c++] = 0; }
		if(c == pn) { break; }
		v *= pe[c].FI;
		s++;
		d[c]++;
	}
	dn = ivs.size();
	sort(ALL(ivs));
	inc(i, dn) { vi[ ivs[i].FI ] = i; }
	
	// cout << "dn: " << dn << endl;
	
	
	dp[0][0][1] = 1;
	inc(i, n) {
		inc(j, dn) {
		inc(l, dn) {
			LL m = ivs[j].FI * ivs[l].FI;
			if(x % m == 0) {
				for(auto && e: dp[i][j]) {
					if(e.FI <= l) { dp[i + 1][ vi[m] ][l] += e.SE; }
				}
			}
		}
		}
	}
	
	/*
	dp[0][0][1] = 1;
	inc(i, n) {
		cout << i << " ";
		inc(j, dn) {
		inc(k, dn) {
			incID(l, k, dn) {
				LL m = ivs[j].FI * ivs[l].FI;
				if(x % m == 0) { dp[i + 1][ vi[m] ][l] += dp[i][j][k]; }
			}
		}
		}
	}
	*/
	
	int ans = 0;
	// inc(i, dn) { ans += dp[n][dn - 1][i]; }
	for(auto && e: dp[n][dn - 1]) { ans += e.SE; }
	cout << ans<< endl;
	
	return 0;
}
0