結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
16,076 KB
testcase_01 AC 23 ms
16,120 KB
testcase_02 AC 24 ms
16,092 KB
testcase_03 AC 23 ms
16,156 KB
testcase_04 AC 46 ms
16,088 KB
testcase_05 AC 51 ms
16,220 KB
testcase_06 AC 54 ms
16,180 KB
testcase_07 AC 48 ms
16,076 KB
testcase_08 AC 48 ms
16,156 KB
testcase_09 AC 52 ms
16,096 KB
testcase_10 AC 36 ms
16,096 KB
testcase_11 AC 27 ms
16,144 KB
testcase_12 AC 25 ms
16,092 KB
testcase_13 AC 39 ms
16,176 KB
testcase_14 AC 44 ms
16,112 KB
testcase_15 AC 24 ms
16,116 KB
testcase_16 AC 28 ms
16,024 KB
testcase_17 AC 26 ms
16,076 KB
testcase_18 AC 49 ms
16,264 KB
testcase_19 AC 25 ms
16,104 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;
    vector<int> cnt(r + 1);
    for(int i = 2; i <= r; i++){
        if (cnt[i] >= 1) continue;
        long long d = i;
        while(d <= r){
            const int d2 = d;
            for(int j = d2; j <= r; j += d2) cnt[j]++;
            d *= i;
        }
    }
    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, tot = 0;
    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