結果
問題 | No.1529 Constant Lcm |
ユーザー | rogi52 |
提出日時 | 2021-06-04 20:31:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,421 ms / 3,000 ms |
コード長 | 1,369 bytes |
コンパイル時間 | 2,104 ms |
コンパイル使用メモリ | 180,500 KB |
実行使用メモリ | 10,936 KB |
最終ジャッジ日時 | 2024-11-19 09:24:52 |
合計ジャッジ時間 | 17,056 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
7,188 KB |
testcase_01 | AC | 10 ms
7,180 KB |
testcase_02 | AC | 9 ms
7,116 KB |
testcase_03 | AC | 9 ms
7,128 KB |
testcase_04 | AC | 9 ms
7,108 KB |
testcase_05 | AC | 9 ms
7,076 KB |
testcase_06 | AC | 9 ms
7,084 KB |
testcase_07 | AC | 10 ms
7,168 KB |
testcase_08 | AC | 9 ms
7,176 KB |
testcase_09 | AC | 9 ms
7,164 KB |
testcase_10 | AC | 1,245 ms
10,560 KB |
testcase_11 | AC | 449 ms
8,576 KB |
testcase_12 | AC | 27 ms
7,076 KB |
testcase_13 | AC | 1,036 ms
10,072 KB |
testcase_14 | AC | 613 ms
9,124 KB |
testcase_15 | AC | 701 ms
9,240 KB |
testcase_16 | AC | 532 ms
8,680 KB |
testcase_17 | AC | 277 ms
8,032 KB |
testcase_18 | AC | 302 ms
8,148 KB |
testcase_19 | AC | 654 ms
9,124 KB |
testcase_20 | AC | 1,394 ms
10,936 KB |
testcase_21 | AC | 1,378 ms
10,832 KB |
testcase_22 | AC | 1,374 ms
10,800 KB |
testcase_23 | AC | 1,421 ms
10,844 KB |
testcase_24 | AC | 1,392 ms
10,840 KB |
testcase_25 | AC | 1,353 ms
10,832 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; vector<int> smallest_prime_factors(int N){ vector<int> spf(N + 1); iota(spf.begin(), spf.end(), 0); for(int i = 2; i * i <= N; i++){ if(spf[i] != i) continue; for(int j = i * i; j <= N; j += i){ if(spf[j] == j) spf[j] = i; } } return spf; } vector<int> prime_facrorize_query(int x, vector<int> &spf){ vector<int> res; while(x != 1){ res.emplace_back(spf[x]); x /= spf[x]; } sort(res.begin(), res.end()); return res; } ll mod = 998244353; ll modpow(ll a,ll b){ ll ans = 1; a %= mod; while(b){ if(b&1) ans = ans * a % mod; a = a * a % mod; b >>= 1; } return ans; } int main(){ cin.tie(0); ios::sync_with_stdio(0); int N; cin >> N; int MX = 1000000; auto spf = smallest_prime_factors(MX); map<int,int> cnt; for(int i = 1; i <= N - 1; i++){ auto a = prime_facrorize_query(i, spf); auto b = prime_facrorize_query(N - i, spf); map<int,int> mp; for(int j : a) mp[j]++; for(int j : b) mp[j]++; for(auto e : mp) cnt[e.first] = max(cnt[e.first], e.second); } ll ans = 1; for(auto e : cnt) ans = (ans * modpow(e.first, e.second)) % mod; cout << ans << endl; }