結果

問題 No.2896 Monotonic Prime Factors
ユーザー t98slidert98slider
提出日時 2024-09-21 19:24:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 5,031 ms
コンパイル使用メモリ 265,112 KB
実行使用メモリ 16,656 KB
最終ジャッジ日時 2024-09-21 19:24:28
合計ジャッジ時間 8,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
16,628 KB
testcase_01 AC 23 ms
16,656 KB
testcase_02 AC 23 ms
16,640 KB
testcase_03 AC 24 ms
16,508 KB
testcase_04 AC 49 ms
16,512 KB
testcase_05 AC 53 ms
16,512 KB
testcase_06 AC 52 ms
16,424 KB
testcase_07 AC 49 ms
16,520 KB
testcase_08 AC 52 ms
16,592 KB
testcase_09 AC 54 ms
16,552 KB
testcase_10 AC 38 ms
16,488 KB
testcase_11 AC 27 ms
16,472 KB
testcase_12 AC 26 ms
16,540 KB
testcase_13 AC 39 ms
16,516 KB
testcase_14 AC 45 ms
16,536 KB
testcase_15 AC 24 ms
16,548 KB
testcase_16 AC 30 ms
16,468 KB
testcase_17 AC 27 ms
16,548 KB
testcase_18 AC 51 ms
16,544 KB
testcase_19 AC 25 ms
16,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    constexpr int r = 100'000, r2 = 1600'000;
    int idx = 0, tot = 0;
    vector<int> tb(r + 1, 1), cnt(r + 1);
    for(int i = 2; i <= r; i++){
        if (tb[i] == i) continue;
        const int coef = i / tb[i];
        for(int j = i; j <= r; j += i){
            tb[j] *= coef;
            cnt[j]++;
        }
    }
    vector<mint> fact(r2 + 1), inv(r2 + 1);
    fact[0] = 1;
    for(int i = 1; i <= r2; i++) fact[i] = i * fact[i - 1];
    inv[r2] = 1 / fact[r2];
    for(int i = r2; i >= 1; i--) inv[i - 1] = i * inv[i];
    int q;
    cin >> q;
    while(q--){
        int a, b;
        cin >> a >> b;
        tot += cnt[a];
        cout << (tot >= b ? (fact[tot - 1] * inv[tot - b] * inv[b - 1]).val() : 0) << '\n';
    }
}
0