結果

問題 No.1529 Constant Lcm
ユーザー 沙耶花沙耶花
提出日時 2021-06-04 20:11:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,822 ms / 3,000 ms
コード長 802 bytes
コンパイル時間 4,571 ms
コンパイル使用メモリ 271,592 KB
実行使用メモリ 501,944 KB
最終ジャッジ日時 2024-11-19 08:13:00
合計ジャッジ時間 33,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2,526 ms
434,652 KB
testcase_11 AC 878 ms
171,648 KB
testcase_12 AC 29 ms
11,520 KB
testcase_13 AC 2,022 ms
373,968 KB
testcase_14 AC 1,182 ms
224,512 KB
testcase_15 AC 1,352 ms
253,952 KB
testcase_16 AC 1,015 ms
206,336 KB
testcase_17 AC 506 ms
108,032 KB
testcase_18 AC 556 ms
116,864 KB
testcase_19 AC 1,271 ms
238,208 KB
testcase_20 AC 2,746 ms
492,764 KB
testcase_21 AC 2,774 ms
494,588 KB
testcase_22 AC 2,730 ms
485,888 KB
testcase_23 AC 2,822 ms
501,944 KB
testcase_24 AC 2,769 ms
486,140 KB
testcase_25 AC 2,637 ms
469,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	int N;
	cin>>N;
	
	vector<map<int,int>> mp(N);
	
	for(int i=2;i<N;i++){
		if(mp[i].size()!=0)continue;
		long long t = 1;
		while(true){
			t *= i;
			if(t >= N)break;
			for(int j=t;j<N;j+=t){
				mp[j][i]++;
			}
		}
	}
	
	vector<map<int,int>> mp2 = mp;
	for(int i=1;i<N;i++){
		int t = N-i;
		for(auto a:mp[t]){
			mp2[i][a.first] += a.second;
		}
	}
	
	map<int,int> Mp;
	
	rep(i,N){
		for(auto a:mp2[i]){
			Mp[a.first] = max(Mp[a.first],a.second);
		}
	}
	
	mint ans = 1;
	for(auto a:Mp){
		ans *= mint(a.first).pow(a.second);
	}
	
	cout<<ans.val()<<endl;
	
	return 0;
}
0