結果
問題 | No.1529 Constant Lcm |
ユーザー | KKT89 |
提出日時 | 2021-06-04 20:54:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 617 ms / 3,000 ms |
コード長 | 1,357 bytes |
コンパイル時間 | 2,736 ms |
コンパイル使用メモリ | 222,236 KB |
実行使用メモリ | 15,460 KB |
最終ジャッジ日時 | 2024-04-30 00:37:57 |
合計ジャッジ時間 | 9,808 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
12,140 KB |
testcase_01 | AC | 22 ms
12,264 KB |
testcase_02 | AC | 21 ms
12,264 KB |
testcase_03 | AC | 22 ms
12,264 KB |
testcase_04 | AC | 21 ms
12,136 KB |
testcase_05 | AC | 21 ms
12,264 KB |
testcase_06 | AC | 20 ms
12,388 KB |
testcase_07 | AC | 21 ms
12,264 KB |
testcase_08 | AC | 21 ms
12,268 KB |
testcase_09 | AC | 22 ms
12,268 KB |
testcase_10 | AC | 516 ms
15,084 KB |
testcase_11 | AC | 200 ms
13,164 KB |
testcase_12 | AC | 28 ms
12,264 KB |
testcase_13 | AC | 425 ms
14,696 KB |
testcase_14 | AC | 260 ms
13,672 KB |
testcase_15 | AC | 295 ms
13,676 KB |
testcase_16 | AC | 224 ms
13,288 KB |
testcase_17 | AC | 124 ms
12,776 KB |
testcase_18 | AC | 137 ms
12,780 KB |
testcase_19 | AC | 286 ms
13,668 KB |
testcase_20 | AC | 617 ms
15,340 KB |
testcase_21 | AC | 574 ms
15,460 KB |
testcase_22 | AC | 585 ms
15,332 KB |
testcase_23 | AC | 603 ms
15,460 KB |
testcase_24 | AC | 601 ms
15,336 KB |
testcase_25 | AC | 556 ms
15,336 KB |
ソースコード
#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; }