結果

問題 No.2896 Monotonic Prime Factors
ユーザー momoyuumomoyuu
提出日時 2024-09-20 21:40:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 107,744 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-09-20 21:40:40
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,200 KB
testcase_01 AC 29 ms
19,200 KB
testcase_02 AC 29 ms
19,072 KB
testcase_03 AC 30 ms
19,200 KB
testcase_04 AC 169 ms
19,072 KB
testcase_05 AC 224 ms
19,216 KB
testcase_06 AC 196 ms
19,072 KB
testcase_07 AC 166 ms
19,200 KB
testcase_08 AC 174 ms
19,072 KB
testcase_09 AC 193 ms
19,200 KB
testcase_10 AC 106 ms
19,200 KB
testcase_11 AC 48 ms
19,200 KB
testcase_12 AC 39 ms
19,072 KB
testcase_13 AC 110 ms
19,072 KB
testcase_14 AC 135 ms
19,200 KB
testcase_15 AC 34 ms
19,328 KB
testcase_16 AC 66 ms
19,200 KB
testcase_17 AC 44 ms
19,116 KB
testcase_18 AC 166 ms
19,200 KB
testcase_19 AC 48 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/modint>
using mint = atcoder::modint998244353;
const int B = 2e6;
mint fac[B+1],ifac[B+1];
#include<map>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int q;
    cin>>q;
    fac[0] = 1;
    for(int i = 1;i<=B;i++) fac[i] = fac[i-1] * i;
    ifac[B] = fac[B].inv();
    for(int i = B-1;i>=0;i--) ifac[i] = ifac[i+1] * (i+1);
    const int want = 1e5 + 10;
    vector<int> p(want+1,1);
    for(int i = 2;i<=want;i++){
        if(p[i]!=1) continue;
        for(int j = i;j<=want;j+=i) p[j] = i;
    }
    ll all = 0;
    for(int i = 0;i<q;i++){
        ll a,b;
        cin>>a>>b;
        while(a!=1){
            all++;
            a /= p[a];
        }
        mint ans = 0;
        if(all>=b){
            ll use = all - b;
            ans = fac[use+b-1] * ifac[use] * ifac[b-1];
        }        
        cout<<ans.val()<<endl;
    }
}

0