結果

問題 No.1529 Constant Lcm
ユーザー monnumonnu
提出日時 2021-06-04 21:58:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 636 ms / 3,000 ms
コード長 1,324 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 172,048 KB
実行使用メモリ 7,188 KB
最終ジャッジ日時 2024-04-30 02:45:14
合計ジャッジ時間 9,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 579 ms
6,944 KB
testcase_11 AC 231 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 499 ms
6,400 KB
testcase_14 AC 320 ms
5,376 KB
testcase_15 AC 339 ms
5,376 KB
testcase_16 AC 263 ms
5,376 KB
testcase_17 AC 147 ms
5,376 KB
testcase_18 AC 157 ms
5,376 KB
testcase_19 AC 328 ms
5,504 KB
testcase_20 AC 636 ms
7,108 KB
testcase_21 AC 634 ms
7,164 KB
testcase_22 AC 633 ms
7,188 KB
testcase_23 AC 636 ms
7,168 KB
testcase_24 AC 632 ms
7,168 KB
testcase_25 AC 630 ms
7,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
using ll=long long;
#define MAX 1000
#define MOD 998244353

vector<int> p;
vector<bool> p_table(MAX+1,true);
void prime(){
  p_table.at(0)=false,p_table.at(1)=false;
  for(int i=2;i<=MAX;i++){
    if(p_table.at(i)){
      p.push_back(i);
      for(int j=2;i*j<=MAX;j++){
        p_table.at(i*j)=false;
      }
    }
  }
}


int main(){
  int N;
  cin>>N;
  prime();
  int n=p.size();
  vector<int> cnt(n,0);
  vector<int> other_p(N,0);
  for(int i=1;i<=N/2;i++){
    int x=i;
    int y=N-i;
    for(int j=0;j<n;j++){
      int counter=0;
      while(x%p[j]==0){
        counter++;
        x/=p[j];
      }
      while(y%p[j]==0){
        counter++;
        y/=p[j];
      }
      cnt[j]=max(cnt[j],counter);
    }
    if(x>1&&y>1){
      if(x==y){
        other_p[x]=2;
      }else{
        other_p[x]=max(1,other_p[x]);
        other_p[y]=max(1,other_p[y]);
      }
    }else if(x>1){
      other_p[x]=max(1,other_p[x]);
    }else if(y>1){
      other_p[y]=max(1,other_p[y]);
    }
  }

  ll ans=1;
  for(int i=0;i<n;i++){
    for(int j=0;j<cnt[i];j++){
      ans*=(ll)p[i];
      ans%=MOD;
    }
  }
  for(int i=1;i<N;i++){
    for(int j=0;j<other_p[i];j++){
      ans*=(ll)i;
      ans%=MOD;
    }
  }
  cout<<ans<<endl;
}
0