結果

問題 No.1529 Constant Lcm
ユーザー Nzt3Nzt3
提出日時 2021-06-04 23:45:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 3,000 ms
コード長 669 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 177,204 KB
実行使用メモリ 10,316 KB
最終ジャッジ日時 2024-04-30 14:03:57
合計ジャッジ時間 6,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 369 ms
9,724 KB
testcase_11 AC 136 ms
6,944 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 285 ms
8,964 KB
testcase_14 AC 179 ms
7,648 KB
testcase_15 AC 201 ms
7,680 KB
testcase_16 AC 156 ms
6,940 KB
testcase_17 AC 80 ms
6,940 KB
testcase_18 AC 86 ms
6,940 KB
testcase_19 AC 190 ms
7,680 KB
testcase_20 AC 414 ms
10,316 KB
testcase_21 AC 401 ms
10,188 KB
testcase_22 AC 392 ms
10,188 KB
testcase_23 AC 414 ms
10,192 KB
testcase_24 AC 392 ms
10,192 KB
testcase_25 AC 382 ms
10,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
int main(){
  int N;
  cin>>N;
  vector<int>prime(N+1);
  for(int i=2;i<=N;i++){
    if(prime[i]!=0)continue;
    for(int j=i;j<=N;j+=i){
      prime[j]=i;
    }
  }
  unordered_map<int,int>ans;
  for(int i=1;i<=N/2;i++){
    unordered_map<int,int>now;
    int t=i;
    while(t!=1){
      now[prime[t]]++;
      t/=prime[t];
    }
    t=N-i;
    while(t!=1){
      now[prime[t]]++;
      t/=prime[t];
    }
    for(auto i:now)ans[i.first]=max(ans[i.first],i.second);
  }
  long long ret=1;
  for(auto i:ans){
    for(int j=i.second;j>0;j--){
      ret=i.first*ret%mod;
    }
  }
  cout<<ret<<'\n';
}
0