結果

問題 No.1529 Constant Lcm
ユーザー kaede2020kaede2020
提出日時 2021-06-05 19:10:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 3,000 ms
コード長 1,493 bytes
コンパイル時間 4,381 ms
コンパイル使用メモリ 235,428 KB
実行使用メモリ 11,860 KB
最終ジャッジ日時 2024-05-01 13:07:37
合計ジャッジ時間 8,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 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 344 ms
11,180 KB
testcase_11 AC 130 ms
6,528 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 292 ms
10,068 KB
testcase_14 AC 165 ms
7,808 KB
testcase_15 AC 195 ms
7,936 KB
testcase_16 AC 159 ms
6,944 KB
testcase_17 AC 81 ms
5,504 KB
testcase_18 AC 88 ms
5,504 KB
testcase_19 AC 182 ms
7,936 KB
testcase_20 AC 395 ms
11,860 KB
testcase_21 AC 400 ms
11,860 KB
testcase_22 AC 388 ms
11,860 KB
testcase_23 AC 407 ms
11,732 KB
testcase_24 AC 393 ms
11,856 KB
testcase_25 AC 374 ms
11,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
//using mint = modint1000000007;
using mint = modint998244353;
std::chrono::time_point<std::chrono::steady_clock> start;
template <typename T> bool chmax(T &u, const T z) { if (u < z) {u = z; return true;} else return false; }
template <typename T> bool chmin(T &u, const T z) { if (u > z) {u = z; return true;} else return false; }
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
typedef pair<ll, int> P;
ll gcd(ll x, ll y) { return y ? gcd(y, x % y) : x; }
ll lcm(ll a, ll b){return a * b / gcd(a, b);}
//写し 難しい
int main(){
  int n;
  cin >> n;
  vector<int> kazu(n + 1, -1);
  int cnt = 0;
  vector<int> sosu_cnt(n + 1, -1);
  vector<int> sosu;
  
  rep(i,n)kazu[i+1] = i+1;
  for (int i = 2; i <= n; i++){
    if (kazu[i] == i){//一番小さな約数で埋めていく
      for (int j = i * 2; j <= n; j += i){
        kazu[j] = i;
      }
      sosu_cnt[i] = cnt;
      cnt++;
      sosu.push_back(i);
    }
  }
  vector<int> mx(cnt, 0);
  for (int i = 1; i < n; i++){
    map<int, int> mp;
    int a = i;
    while (a > 1){
      mp[sosu_cnt[kazu[a]]]++;
      a /= kazu[a];
    }
    int b = n - i;
    while (b > 1){
      mp[sosu_cnt[kazu[b]]]++;
      b /= kazu[b];
    }
    for (auto P : mp){
      mx[P.first] = max(mx[P.first], P.second);
    }
  }
  mint ans = 1;
  rep(i,cnt)rep(j,mx[i]){
      ans *= sosu[i];
  }
  cout << ans.val() << endl;
}
0