結果

問題 No.890 移調の限られた旋法
ユーザー leaf_1415leaf_1415
提出日時 2019-09-20 22:06:15
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,439 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 65,944 KB
実行使用メモリ 201,524 KB
最終ジャッジ日時 2024-09-14 17:47:43
合計ジャッジ時間 72,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,769 ms
201,484 KB
testcase_02 AC 1,913 ms
201,108 KB
testcase_03 AC 1,790 ms
200,684 KB
testcase_04 TLE -
testcase_05 AC 1,941 ms
199,976 KB
testcase_06 AC 1,817 ms
201,524 KB
testcase_07 AC 1,877 ms
200,248 KB
testcase_08 TLE -
testcase_09 AC 1,999 ms
201,408 KB
testcase_10 AC 1,852 ms
200,024 KB
testcase_11 AC 1,966 ms
200,116 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,846 ms
199,744 KB
testcase_16 AC 1,802 ms
199,644 KB
testcase_17 AC 1,844 ms
201,440 KB
testcase_18 AC 1,799 ms
200,900 KB
testcase_19 AC 1,863 ms
200,980 KB
testcase_20 AC 1,839 ms
201,472 KB
testcase_21 AC 1,880 ms
200,580 KB
testcase_22 TLE -
testcase_23 AC 1,799 ms
201,276 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,925 ms
199,780 KB
testcase_29 AC 1,963 ms
200,604 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>
#define llint long long
#define mod 1000000007

using namespace std;

const int FACT_MAX = 1000005;
llint fact[FACT_MAX], fact_inv[FACT_MAX];

llint modpow(llint a, llint n)
{
	if(n == 0) return 1;
	if(n % 2){
		return ((a%mod) * (modpow(a, n-1)%mod)) % mod;
	}
	else{
		return modpow((a*a)%mod, n/2) % mod;
	}
}

void make_fact()
{
	llint val = 1;
	fact[0] = 1;
	for(int i = 1; i < FACT_MAX; i++){
		val *= i;
		val %= mod;
		fact[i] = val;
	}
	fact_inv[FACT_MAX-1] = modpow(fact[FACT_MAX-1], mod-2);
	for(int i = FACT_MAX-2; i >= 0; i--){
		fact_inv[i] = fact_inv[i+1] * (i+1) % mod;
	}
}

llint comb(llint n, llint k)
{
	llint ret = 1;
	ret *= fact[n];
	ret *= fact_inv[k], ret %= mod;
	ret *= fact_inv[n-k], ret %= mod;
	return ret;
}

llint gcd(llint a, llint b){
	if(b == 0) return a;
	return gcd(b, a%b);
}

llint n, k;
vector<llint> vec[1000005];;
llint dp[1000005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> k;
	make_fact();
	
	for(int i = 1; i <= 1000000; i++){
		for(int j = 2; i*j <= 1000000; j++){
			vec[i*j].push_back(i);
		}
	}
	
	for(int i = 1; i <= n; i++){
		if(n % i) continue;
		if(k % (n/i)) continue;
		dp[i] = comb(i, k/(n/i));
		for(int j = 0; j < vec[i].size(); j++){
			dp[i] += mod - dp[vec[i][j]], dp[i] %= mod;
		}
	}
	
	llint ans = 0;
	for(int i = 1; i < n; i++) ans += dp[i], ans %= mod;
	cout << ans << endl;
	
	return 0;
}
0