結果

問題 No.1529 Constant Lcm
ユーザー rogi52rogi52
提出日時 2021-06-04 20:31:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,450 ms / 3,000 ms
コード長 1,369 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 179,732 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-29 23:58:56
合計ジャッジ時間 17,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,040 KB
testcase_01 AC 11 ms
7,040 KB
testcase_02 AC 10 ms
7,168 KB
testcase_03 AC 10 ms
7,040 KB
testcase_04 AC 10 ms
7,040 KB
testcase_05 AC 10 ms
7,168 KB
testcase_06 AC 10 ms
7,168 KB
testcase_07 AC 11 ms
7,040 KB
testcase_08 AC 10 ms
7,168 KB
testcase_09 AC 10 ms
7,168 KB
testcase_10 AC 1,255 ms
10,624 KB
testcase_11 AC 457 ms
8,576 KB
testcase_12 AC 28 ms
7,168 KB
testcase_13 AC 1,060 ms
10,112 KB
testcase_14 AC 623 ms
8,960 KB
testcase_15 AC 707 ms
9,216 KB
testcase_16 AC 542 ms
8,832 KB
testcase_17 AC 284 ms
8,064 KB
testcase_18 AC 310 ms
8,192 KB
testcase_19 AC 668 ms
9,216 KB
testcase_20 AC 1,437 ms
10,880 KB
testcase_21 AC 1,424 ms
10,880 KB
testcase_22 AC 1,423 ms
10,752 KB
testcase_23 AC 1,450 ms
10,880 KB
testcase_24 AC 1,420 ms
10,880 KB
testcase_25 AC 1,382 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0