結果

問題 No.2896 Monotonic Prime Factors
ユーザー loop0919loop0919
提出日時 2024-09-12 16:12:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 3,132 ms
コンパイル使用メモリ 245,772 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-09-12 16:12:15
合計ジャッジ時間 7,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
9,600 KB
testcase_01 AC 11 ms
9,728 KB
testcase_02 AC 12 ms
9,728 KB
testcase_03 AC 12 ms
9,728 KB
testcase_04 AC 305 ms
9,600 KB
testcase_05 AC 233 ms
9,600 KB
testcase_06 AC 236 ms
9,600 KB
testcase_07 AC 259 ms
9,728 KB
testcase_08 AC 277 ms
9,600 KB
testcase_09 AC 230 ms
9,600 KB
testcase_10 AC 130 ms
9,600 KB
testcase_11 AC 39 ms
9,600 KB
testcase_12 AC 25 ms
9,600 KB
testcase_13 AC 142 ms
9,728 KB
testcase_14 AC 176 ms
9,600 KB
testcase_15 AC 17 ms
9,728 KB
testcase_16 AC 66 ms
9,600 KB
testcase_17 AC 35 ms
9,600 KB
testcase_18 AC 229 ms
9,600 KB
testcase_19 AC 38 ms
9,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint998244353;

mint factorial[1600000];

void init_factorial() {
    factorial[0] = 1;

    for (int i = 1; i < 1600000; i++) {
        factorial[i] = factorial[i - 1] * i;
    }
}


mint comb(int n, int r) {
    if (n < r) {
        return mint(0);
    }

    return factorial[n] / (factorial[r] * factorial[n - r]);
}


int count_prime(int n) {
    int count = 0;

    while (n % 2 == 0) {
        n /= 2;
        count++;
    }

    for (int i = 3; i * i <= n; i += 2) {
        while (n % i == 0) {
            n /= i;
            count++;
        }
    }

    if (n > 1) {
        count++;
    }

    return count;
}

int main() {
    init_factorial();

    int Q;
    cin >> Q;

    int count = 0;

    while (Q--) {
        int A, B;
        cin >> A >> B;

        count += count_prime(A);

        cout << comb(count - 1, B - 1).val() << endl;
    }
}
0