結果

問題 No.1529 Constant Lcm
ユーザー maguroflymagurofly
提出日時 2021-06-04 20:35:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 211,448 KB
実行使用メモリ 104,940 KB
最終ジャッジ日時 2024-04-30 00:07:35
合計ジャッジ時間 30,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
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 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, l, r) for (auto i = (l); i < (r); i++)
#define chmin(dest, src) if ((dest) > (src)) dest = (src)
#define chmax(dest, src) if ((dest) < (src)) dest = (src)
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll MOD = 998244353;

vector<int> prime_division(int n) {
  vector<int> pd;
  int i = 2;
  while (i * i <= n) {
    while (i % n == 0) {
      pd.push_back(i);
      n /= i;
    }
    i++;
  }
  if (n > 1) pd.push_back(n);
  return pd;
}

int main() {
  int N; cin >> N;

  vector<vector<int>> pds(N);
  rep (i, 1, N) {
    pds[i] = prime_division(i);
  }

  map<int, int> lcm_pd;
  rep (i, 1, N) {
    int j = N - i;
    map<int, int> pd;
    for (int p : pds[i]) pd[p]++;
    for (int p : pds[j]) pd[p]++;
    for (auto &e : pd) {
      chmax(lcm_pd[e.first], e.second);
    }
  }

  ll ans = 1;
  for (auto &e : lcm_pd) {
    rep (i, 0, e.second) {
      ans *= e.first;
      ans %= MOD;
    }
  }

  if (ans < 0) ans += MOD;

  cout << ans << endl;

  return 0;
}
0