結果

問題 No.2318 Phys Bone Maker
ユーザー no wayno way
提出日時 2023-05-26 22:04:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 3,000 ms
コード長 926 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 176,780 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 06:56:14
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 353 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 12 ms
5,376 KB
testcase_26 AC 10 ms
5,376 KB
testcase_27 AC 11 ms
5,376 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 6 ms
5,376 KB
testcase_30 AC 8 ms
5,376 KB
testcase_31 AC 12 ms
5,376 KB
testcase_32 AC 16 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 9 ms
5,376 KB
testcase_35 AC 43 ms
5,376 KB
testcase_36 AC 172 ms
5,376 KB
testcase_37 AC 174 ms
5,376 KB
testcase_38 AC 180 ms
5,376 KB
testcase_39 AC 254 ms
5,376 KB
testcase_40 AC 254 ms
5,376 KB
testcase_41 AC 288 ms
5,376 KB
testcase_42 AC 295 ms
5,376 KB
testcase_43 AC 12 ms
5,376 KB
testcase_44 AC 43 ms
5,376 KB
testcase_45 AC 40 ms
5,376 KB
testcase_46 AC 297 ms
5,376 KB
testcase_47 AC 22 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
long long n;
int main(){
	scanf("%lld",&n);
	vector<long long>w;
	for (long long i=1;1ll*i*i<=n;i++) if (n%i==0){
		w.push_back(i);
		if (1ll*i*i!=n) w.push_back(n/i);
	}
	vector<long long>q;
	for (int i=2;1ll*i*i<=n;i++)
		if (n%i==0){
			q.push_back(i);
			while (n%i==0){
				n/=i;
			}
		}
	if (n>1){
		q.push_back(n);
	}
	sort(w.begin(),w.end());
	vector<vector<int>>s((int)w.size(),vector<int>((int)q.size(),0));
	for (int i=0;i<w.size();i++){
		long long t=w[i];
		for (int j=0;j<q.size();j++){
			while (t%q[j]==0){
				t/=q[j];
				s[i][j]++;
			}
		}
	}
	vector<int>dp((int)w.size(),0);
	dp[0]=1;
	for (int i=1;i<w.size();i++) 
		for (int j=0;j<i;j++) if (w[i]%w[j]==0) {
		long long t=1;
		for (int k=0;k<q.size();k++) if (s[i][k]==s[j][k]) t=1ll*t*(s[i][k]+1)%mod;
		dp[i]=(dp[i]+1ll*t*dp[j]%mod)%mod;
	}
	printf("%d\n",dp[(int)dp.size()-1]);
}
0