結果

問題 No.2896 Monotonic Prime Factors
ユーザー n0ma_run0ma_ru
提出日時 2024-10-08 21:09:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 202,860 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-10-08 21:09:39
合計ジャッジ時間 10,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
43,112 KB
testcase_01 AC 202 ms
43,008 KB
testcase_02 AC 152 ms
43,008 KB
testcase_03 AC 167 ms
43,008 KB
testcase_04 AC 460 ms
43,008 KB
testcase_05 AC 402 ms
43,008 KB
testcase_06 AC 387 ms
43,008 KB
testcase_07 AC 424 ms
43,008 KB
testcase_08 AC 472 ms
43,008 KB
testcase_09 AC 373 ms
43,044 KB
testcase_10 AC 291 ms
43,008 KB
testcase_11 AC 196 ms
43,008 KB
testcase_12 AC 187 ms
43,008 KB
testcase_13 AC 294 ms
43,008 KB
testcase_14 AC 339 ms
43,000 KB
testcase_15 AC 176 ms
43,136 KB
testcase_16 AC 215 ms
43,092 KB
testcase_17 AC 220 ms
43,008 KB
testcase_18 AC 380 ms
43,008 KB
testcase_19 AC 194 ms
43,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
ll mod = 998244353;
struct Comb {
    int n;
    ll mod;
    vector<ll> fac, finv, inv;
    Comb(int n, ll mod) : n(n), mod(mod), fac(n+1), finv(n+1), inv(n+1) {
        fac[0] = fac[1] = inv[1] = finv[0] = finv[1] = 1;
        for (int i = 2; i <= n; ++i) {
            fac[i] = (fac[i-1] * i) % mod;
            inv[i] = mod - inv[mod%i] * (mod/i) % mod;
            finv[i] = finv[i-1] * inv[i] % mod;
        }
    }
    ll c(int n, int k) {
        if (n < k || k < 0) return 0;
        return fac[n] * finv[k] % mod * finv[n-k] % mod;
    }
} cb(17e5, mod);
int q;
int main() {
    cin >> q;
    int cnt = 0;
    while (q--) {
        int a,b;
        cin >> a >> b;
        for (int i = 2; i*i <= a; ++i) {
            while (a % i == 0) {
                ++cnt;
                a /= i;
            }
        }
        if (a > 1) ++cnt;
        cout << cb.c(cnt-1, b-1) << '\n';
    }
}
0