結果

問題 No.1529 Constant Lcm
ユーザー tabae326tabae326
提出日時 2021-06-04 20:40:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,536 ms / 3,000 ms
コード長 1,674 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 216,784 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-04-30 00:13:39
合計ジャッジ時間 19,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
18,816 KB
testcase_01 AC 46 ms
18,816 KB
testcase_02 AC 44 ms
18,816 KB
testcase_03 AC 49 ms
18,816 KB
testcase_04 AC 46 ms
18,944 KB
testcase_05 AC 46 ms
18,816 KB
testcase_06 AC 44 ms
18,816 KB
testcase_07 AC 45 ms
18,688 KB
testcase_08 AC 47 ms
18,816 KB
testcase_09 AC 45 ms
18,816 KB
testcase_10 AC 1,352 ms
23,424 KB
testcase_11 AC 517 ms
20,736 KB
testcase_12 AC 65 ms
18,944 KB
testcase_13 AC 1,141 ms
22,784 KB
testcase_14 AC 686 ms
21,504 KB
testcase_15 AC 790 ms
21,632 KB
testcase_16 AC 601 ms
20,992 KB
testcase_17 AC 330 ms
19,968 KB
testcase_18 AC 360 ms
20,224 KB
testcase_19 AC 750 ms
21,504 KB
testcase_20 AC 1,523 ms
23,808 KB
testcase_21 AC 1,495 ms
23,808 KB
testcase_22 AC 1,496 ms
23,808 KB
testcase_23 AC 1,536 ms
23,808 KB
testcase_24 AC 1,509 ms
23,808 KB
testcase_25 AC 1,455 ms
23,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)

struct osa_k {
    using _ll = long long;

    #define PRIME_FACTORIZE_MAX 2000010
    vector<_ll> primes;

    osa_k() {
        primes.resize((PRIME_FACTORIZE_MAX));
        for(_ll i = 0; i < PRIME_FACTORIZE_MAX; i++) {
            primes[i] = 1;
        }
        for(_ll i = 2; i < PRIME_FACTORIZE_MAX; i++) {
            if(primes[i] != 1) continue;
            for(_ll j = i; j <= PRIME_FACTORIZE_MAX; j += i) {
                primes[j] = i;
            }
        }
    }

    vector<pair<_ll,_ll>> factorize(_ll n){
        vector<pair<_ll,_ll>> res;
        while(n != 1) {
            _ll cur = primes[n];
            _ll cnt = 0;
            while(n % cur == 0) {
                n /= cur;
                cnt++;
            }
            res.push_back({cur, cnt});
        }
        reverse(res.begin(), res.end());
        return res;
    }
} osa_k;

vector<pair<long long, long long>>factorize(long long n) {
    return osa_k.factorize(n);
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;

void solve() {
    ll n;
    cin >> n;
    map<ll,ll> mp;
    rep(i, 1, n) {
        auto u = factorize(i);
        auto v = factorize(n-i);
        map<ll,ll> w;
        for(auto [a, p] : u) w[a] += p;
        for(auto [a, p] : v) w[a] += p;
        for(auto [a, p] : w) mp[a] = max(mp[a], p);
    }    
    mint ans = 1;
    for(auto [a, p] : mp) ans *= mint(a).pow(p);
    cout << ans.val() << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0