結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-26 17:55:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,212 bytes
コンパイル時間 2,978 ms
コンパイル使用メモリ 245,148 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-26 17:55:24
合計ジャッジ時間 7,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
18,944 KB
testcase_01 AC 20 ms
19,072 KB
testcase_02 AC 20 ms
19,072 KB
testcase_03 AC 20 ms
18,944 KB
testcase_04 AC 461 ms
18,944 KB
testcase_05 RE -
testcase_06 AC 183 ms
19,072 KB
testcase_07 AC 382 ms
19,072 KB
testcase_08 AC 431 ms
18,944 KB
testcase_09 RE -
testcase_10 AC 130 ms
19,072 KB
testcase_11 AC 42 ms
18,944 KB
testcase_12 AC 29 ms
18,932 KB
testcase_13 AC 143 ms
18,944 KB
testcase_14 AC 176 ms
19,072 KB
testcase_15 AC 20 ms
19,012 KB
testcase_16 AC 67 ms
19,052 KB
testcase_17 AC 37 ms
18,928 KB
testcase_18 AC 247 ms
18,944 KB
testcase_19 AC 41 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define fi first
#define sc second
#define pii pair<int,int>
#define pb push_back
#define umap unordered_map
#define mset multiset
#define pq priority_queue
#define ull unsigned long long
#define i128 __int128
const int maxn=1e6+10;
const int mod=998244353;
int n,cnt,fr[maxn],ifr[maxn];
int quickpow(int x,int y){
    int p=1;
    for(int i=y;i;i>>=1) p=(p*((i&1)?x:1))%mod,x=(x*x)%mod;
    return p;
}
int inv(int x){
    return quickpow(x,mod-2);
}
int C(int x,int y){
    if(x<0||y<0||x-y<0) return 0;
    return fr[x]*ifr[y]%mod*ifr[x-y]%mod;
}
void solve(){
    cin>>n,fr[0]=1;
    for(int i=1;i<=1e6;i++) fr[i]=(fr[i-1]*i)%mod;
    ifr[1000000]=inv(fr[1000000]);
    for(int i=999999;~i;i--) ifr[i]=(ifr[i+1]*(i+1))%mod;
    while(n--){
        int x,y;
        cin>>x>>y;
        for(int i=2;i*i<=x;i++){
            while(x%i==0) x/=i,cnt++;
        }
        cnt+=(x>1);
        cout<<C(cnt-1,y-1)<<endl;
    }
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--) solve();
    return 0;
}
/*
Samples
input:

output:

THINGS TODO:
??freopen???????
????
????????????
*/
0