結果

問題 No.1529 Constant Lcm
ユーザー KKT89KKT89
提出日時 2021-06-04 20:54:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 620 ms / 3,000 ms
コード長 1,357 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 222,376 KB
実行使用メモリ 15,460 KB
最終ジャッジ日時 2024-11-19 10:35:08
合計ジャッジ時間 10,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
12,264 KB
testcase_01 AC 23 ms
12,140 KB
testcase_02 AC 23 ms
12,264 KB
testcase_03 AC 23 ms
12,264 KB
testcase_04 AC 19 ms
12,264 KB
testcase_05 AC 21 ms
12,268 KB
testcase_06 AC 20 ms
12,264 KB
testcase_07 AC 20 ms
12,264 KB
testcase_08 AC 20 ms
12,132 KB
testcase_09 AC 20 ms
12,264 KB
testcase_10 AC 524 ms
15,080 KB
testcase_11 AC 205 ms
13,160 KB
testcase_12 AC 27 ms
12,268 KB
testcase_13 AC 435 ms
14,700 KB
testcase_14 AC 259 ms
13,544 KB
testcase_15 AC 299 ms
13,672 KB
testcase_16 AC 232 ms
13,288 KB
testcase_17 AC 125 ms
12,776 KB
testcase_18 AC 138 ms
12,648 KB
testcase_19 AC 284 ms
13,648 KB
testcase_20 AC 620 ms
15,460 KB
testcase_21 AC 585 ms
15,332 KB
testcase_22 AC 598 ms
15,340 KB
testcase_23 AC 606 ms
15,336 KB
testcase_24 AC 598 ms
15,400 KB
testcase_25 AC 561 ms
15,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

constexpr ll mod=998244353;

ll mod_pow(ll a,ll b){
    a%=mod;
    if(b==0)return 1;
    if(b==1)return a;
    ll res=mod_pow(a,b/2)%mod;
    res*=res; res%=mod;
    if(b%2)res*=a;
    return res%mod;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    const int N=2e6+1;
    vector<int> p,lp(N); // lp[i]:iの最小素因数
    lp[0]=lp[1]=-1;
    for(int i=2;i<lp.size();i++){
        if(lp[i]==0){
            lp[i]=i;
            p.emplace_back(i);
        }
        for(int j=0;j<p.size() and p[j]<=lp[i] and i*p[j]<=lp.size();j++){
            lp[i*p[j]]=p[j];
        }
    }
    int n; cin >> n;
    ll r=1;
    map<int,int> res;
    for(int i=1;i<=n/2;i++){
        int b=i,c=n-i;
        map<int,int> mp;
        while(b>1){
            mp[lp[b]]++;
            b/=lp[b];
        }
        swap(b,c);
        while(b>1){
            mp[lp[b]]++;
            b/=lp[b];
        }
        for(auto p:mp){
            res[p.first]=max(res[p.first],p.second);
        }
    }
    for(auto p:res){
        (r*=mod_pow(p.first,p.second))%=mod;
    }
    cout << r << endl;
} 
0