結果

問題 No.1529 Constant Lcm
ユーザー charmychachachacharmychachacha
提出日時 2021-06-04 20:23:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 394 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 179,728 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-04-29 23:45:28
合計ジャッジ時間 10,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
80,384 KB
testcase_01 AC 265 ms
80,384 KB
testcase_02 AC 259 ms
80,384 KB
testcase_03 AC 255 ms
80,384 KB
testcase_04 AC 252 ms
80,512 KB
testcase_05 AC 260 ms
80,512 KB
testcase_06 AC 263 ms
80,384 KB
testcase_07 AC 261 ms
80,512 KB
testcase_08 AC 256 ms
80,384 KB
testcase_09 AC 254 ms
80,384 KB
testcase_10 AC 377 ms
80,384 KB
testcase_11 AC 301 ms
80,512 KB
testcase_12 AC 255 ms
80,384 KB
testcase_13 AC 357 ms
80,384 KB
testcase_14 AC 313 ms
80,384 KB
testcase_15 AC 330 ms
80,512 KB
testcase_16 AC 321 ms
80,384 KB
testcase_17 AC 280 ms
80,384 KB
testcase_18 AC 288 ms
80,384 KB
testcase_19 AC 317 ms
80,512 KB
testcase_20 AC 377 ms
80,512 KB
testcase_21 AC 394 ms
80,512 KB
testcase_22 AC 391 ms
80,384 KB
testcase_23 AC 394 ms
80,384 KB
testcase_24 AC 375 ms
80,384 KB
testcase_25 AC 369 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int N; cin >> N; 
	int S[1000010] = {}; 
	for(int i = 2; i <= 1000000; i++){
		for(int j = 1; i * j <= 1000000; j++){
			if(S[i * j] == 0) S[i * j] = i; 
		}
	} 
	vector<pair<int, int>> A[1000010]; 
	for(int i = 2; i <= 1000000; i++){ 
		int n = 0; int tmp = i; 
		while(tmp % S[i] == 0){
			n ++; tmp /= S[i]; 
		}
		A[i] = A[tmp]; 
		A[i].push_back(make_pair(S[i], n)); 
	}
	int C[1000010] = {}; 
	for(int i = 1; i <= 1000000; i++){
		if(i > N - i) break; 
		map<int, int> mp; 
		for(auto p : A[i]) mp[p.first] += p.second; 
		for(auto p : A[N-i]) mp[p.first] += p.second;
		for(auto p : mp){
			C[p.first] = max(C[p.first], p.second); 
		}
	}
	long long ans = 1; 
	long long mod = 998244353; 
	for(int i = 1; i <= N; i++){
		for(int j = 0; j < C[i]; j++){
			ans *= (long long) i; ans %= mod; 
		}
	}
	cout << ans << "\n";
}
0