結果

問題 No.1529 Constant Lcm
ユーザー umezoumezo
提出日時 2021-06-04 22:33:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 855 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 208,092 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-20 03:02:15
合計ジャッジ時間 62,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 3 ms
10,368 KB
testcase_02 AC 2 ms
9,856 KB
testcase_03 AC 2 ms
10,624 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 2 ms
10,368 KB
testcase_06 AC 2 ms
10,624 KB
testcase_07 AC 2 ms
9,984 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
10,240 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 50 ms
10,624 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=998244353;

map<ll,ll> prime_factor(ll x){
  map<ll,ll> res;
  
  for(ll i=2;i*i<=x;i++){
    while(x%i==0){
      res[i]++;
      x/=i;
    }
  }
  if(x!=1) res[x]++;
  
  return res;
}

ll modpow(ll x,ll n){
  ll ans=1;
  while(n){
    if(n&1) ans=ans*x%MOD;
    x=x*x%MOD;
    n/=2;
  }
  return ans;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  
  map<ll,ll> M;
  for(int i=1;i<=n/2;i++){
    ll x=i;
    ll y=n-i;
    map<ll,ll> m=prime_factor(x*y);
    for(auto t:m){
      M[t.first]=max(M[t.first],t.second);
    }
  }
  
  ll ans=1;
  for(auto t:M){
    ans=ans*modpow(t.first,t.second)%MOD;
  }
  cout<<ans<<endl;
    
  return 0;
}
0