結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
18,816 KB
testcase_01 AC 40 ms
18,836 KB
testcase_02 AC 49 ms
18,796 KB
testcase_03 AC 43 ms
18,816 KB
testcase_04 AC 45 ms
18,800 KB
testcase_05 AC 43 ms
18,716 KB
testcase_06 AC 37 ms
18,864 KB
testcase_07 AC 43 ms
18,804 KB
testcase_08 AC 42 ms
18,900 KB
testcase_09 AC 40 ms
18,808 KB
testcase_10 AC 1,342 ms
23,388 KB
testcase_11 AC 523 ms
20,752 KB
testcase_12 AC 64 ms
18,944 KB
testcase_13 AC 1,124 ms
22,748 KB
testcase_14 AC 693 ms
21,480 KB
testcase_15 AC 791 ms
21,604 KB
testcase_16 AC 604 ms
21,084 KB
testcase_17 AC 346 ms
20,172 KB
testcase_18 AC 354 ms
20,188 KB
testcase_19 AC 732 ms
21,404 KB
testcase_20 AC 1,528 ms
23,640 KB
testcase_21 AC 1,519 ms
23,736 KB
testcase_22 AC 1,499 ms
23,644 KB
testcase_23 AC 1,525 ms
23,780 KB
testcase_24 AC 1,510 ms
23,736 KB
testcase_25 AC 1,463 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