結果

問題 No.847 Divisors of Power
ユーザー silopysilopy
提出日時 2019-07-06 00:01:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 89,516 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-16 08:16:52
合計ジャッジ時間 1,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,948 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 14 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<map>
#include<cmath>
using namespace std;
using lint=int64_t;

template<typename T> 
void pfact(map<T,T> &m,T n)
{
	T x=n;
	for(T i=2;i*i<=n;i++)
	{
		while(x%i==0)
		{
			m[i]++;
			x/=i;
		}
	}
	if(x!=1)m[x]++;
	return;
}

lint N,K,M;
map<lint,lint> pfN;
vector<pair<lint,lint>> facts;
lint depth;
lint ans=0;

void dfs(lint d,lint cur)
{
	if(d==depth)
	{
		ans++;
		return;
	}

	for(lint i=0;i<=facts[d].second*K;i++)
	{
		lint nxt=cur*pow(facts[d].first,i);
		if(nxt>M)break;
		dfs(d+1,nxt);
	}
	return;
}

int main()
{
	cin >> N >> K >> M;

	pfact<lint>(pfN,N);
	for(auto& i:pfN)
		facts.push_back(make_pair(i.first,i.second));

	depth=facts.size();
	dfs(0,1);
	
	cout << ans << endl;
	return 0;
}
0