結果

問題 No.2365 Present of good number
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-07-09 14:39:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,746 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 215,304 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-09 14:39:44
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,944 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 AC 2 ms
6,940 KB
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 -
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
6,940 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,948 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

#include <atcoder/modint>
using mint = atcoder::modint1000000007;
long long pow_mod(long long a, long long b, long long mod) {
    long long res = 1;
    while (b > 0) {
        if (b & 1) {
            res = res * a % mod;
        }
        a = a * a % mod;
        b >>= 1;
    }
    return res;
}
int main() {
    fast_io();
    int n;
    long long k;
    cin >> n >> k;
    map<int, long long> pf;
    for (int i = 2; i * i <= n; i++) {
        while (n % i == 0) {
            pf[i]++;
            n /= i;
        }
    }
    if (n > 1) {
        pf[n]++;
    }
    const long long MOD_POW = 1e9 + 6;
    while (k > 0 && pf.rbegin()->first > 3) {
        map<int, long long> pf_new;
        for (auto [pp, cnt] : pf) {
            int p = pp + 1;
            for (int i = 2; i * i <= p; i++) {
                while (p % i == 0) {
                    pf_new[i] += cnt;
                    pf_new[i] %= MOD_POW;
                    p /= i;
                }
            }
            if (p > 1) {
                pf_new[p] += cnt;
                pf_new[p] %= MOD_POW;
            }
        }
        swap(pf, pf_new);
        k--;
    }
    if (k == 0) {
        mint ans = 1;
        for (auto [p, cnt] : pf) {
            ans *= mint(p).pow(cnt);
        }
        cout << ans.val() << endl;
        return 0;
    }
    long long cnt_2 = pf[2] * pow_mod(2, k / 2, MOD_POW);
    long long cnt_3 = pf[3] * pow_mod(3, k / 2, MOD_POW);
    if (k % 2) {
        swap(cnt_2, cnt_3);
        cnt_2 = (cnt_2 * 2) % MOD_POW;
    }
    mint ans = mint(2).pow(cnt_2) * mint(3).pow(cnt_3);
    cout << ans.val() << endl;
}
0