結果

問題 No.1529 Constant Lcm
ユーザー 沙耶花沙耶花
提出日時 2021-06-04 20:11:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 802 bytes
コンパイル時間 4,567 ms
コンパイル使用メモリ 270,916 KB
実行使用メモリ 502,016 KB
最終ジャッジ日時 2024-04-29 23:15:24
合計ジャッジ時間 35,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2,567 ms
434,688 KB
testcase_11 AC 927 ms
171,648 KB
testcase_12 AC 30 ms
11,648 KB
testcase_13 AC 2,108 ms
373,888 KB
testcase_14 AC 1,242 ms
224,640 KB
testcase_15 AC 1,416 ms
253,952 KB
testcase_16 AC 1,115 ms
206,336 KB
testcase_17 AC 566 ms
108,032 KB
testcase_18 AC 622 ms
116,864 KB
testcase_19 AC 1,388 ms
238,208 KB
testcase_20 TLE -
testcase_21 AC 2,926 ms
494,720 KB
testcase_22 AC 2,900 ms
486,016 KB
testcase_23 AC 2,965 ms
502,016 KB
testcase_24 AC 2,939 ms
486,144 KB
testcase_25 AC 2,894 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