結果

問題 No.2896 Monotonic Prime Factors
ユーザー ねしんねしん
提出日時 2024-09-20 22:16:01
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,423 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 130,304 KB
実行使用メモリ 29,916 KB
最終ジャッジ日時 2024-09-20 22:16:33
合計ジャッジ時間 10,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 266 ms
29,784 KB
testcase_03 WA -
testcase_04 WA -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>

using namespace std;

const int MAXN = 17 * 100000 + 1;
const int MOD = 998244353;

vector<long long> fact(MAXN, 1), invfact(MAXN, 1);

// 素因数分解して因数の数を返す関数
int factorize(int A) {
    int c = 0;
    int M = A;
    for (int i = 2; i <= sqrt(A) + 2; i++) {
        if (M < i) break;
        while (M % i == 0) {
            M /= i;
            c++;
        }
    }
    if (M != 1) c++;
    return c;
}

// 組み合わせC(n, r)を計算する関数
long long C(int n, int r) {
    return fact[n] * invfact[r] % MOD * invfact[n - r] % MOD;
}

// 繰り返し二乗法による累乗計算 (mod MOD)
long long mod_pow(long long base, long long exp, long long mod) {
    long long result = 1;
    while (exp > 0) {
        if (exp % 2 == 1) result = result * base % mod;
        base = base * base % mod;
        exp /= 2;
    }
    return result;
}

int main() {
    // 階乗と階乗の逆元を事前に計算
    for (int i = 2; i < MAXN; i++) {
        fact[i] = fact[i - 1] * i % MOD;
        invfact[i] = invfact[i - 1] * mod_pow(i, MOD - 2, MOD) % MOD;
    }

    int Q;
    cin >> Q;

    while (Q--) {
        int a, b;
        cin >> a >> b;
        int cnt = factorize(a);
        if (cnt < b) {
            cout << 0 << endl;
            continue;
        }
        cout << C(cnt - 1, cnt - b) << endl;
    }

    return 0;
}
0