結果

問題 No.1529 Constant Lcm
ユーザー AuroraAurora
提出日時 2021-06-06 19:11:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 791 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 179,252 KB
実行使用メモリ 321,536 KB
最終ジャッジ日時 2024-05-02 14:42:19
合計ジャッジ時間 33,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 2,702 ms
270,348 KB
testcase_11 AC 895 ms
107,392 KB
testcase_12 AC 34 ms
8,448 KB
testcase_13 AC 2,238 ms
233,088 KB
testcase_14 AC 1,229 ms
134,400 KB
testcase_15 AC 1,453 ms
158,592 KB
testcase_16 AC 1,111 ms
132,864 KB
testcase_17 AC 543 ms
68,096 KB
testcase_18 AC 599 ms
73,600 KB
testcase_19 AC 1,344 ms
145,408 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2,903 ms
288,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  long long int ans = 1,MOD=998244353;
  int N;
  cin >> N;
  vector<map<int,int>> cnt(N-1);
  vector<int> p(0);
  for(int i=2;i<N;i++){
    int t = i;
    for(int j=0;j<p.size();j++){
      if(p[j] > sqrt(i)) break;
      while(t%p[j] == 0){
        t /= p[j];
        cnt[i-1][p[j]]++;
      }
    }
    if(t != 1) cnt[i-1][t]++;
    if(t == i) p.push_back(t);
  }
  map<int,int> Map;
  for(int i=0;i<N-1;i++){
    for(auto x:cnt[i]) Map[x.first] = max(Map[x.first],cnt[i][x.first]+cnt[N-2-i][x.first]);
    for(auto x:cnt[N-2-i]) Map[x.first] = max(Map[x.first],cnt[i][x.first]+cnt[N-2-i][x.first]);
  }
  for(auto x:Map){
    for(int j=0;j<x.second;j++){
      ans *= x.first;
      ans %= MOD;
    }
  }
  cout << ans << endl;
}
0