結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-26 17:55:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 1,213 bytes
コンパイル時間 2,677 ms
コンパイル使用メモリ 246,032 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-09-26 17:56:04
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
81,636 KB
testcase_01 AC 64 ms
81,536 KB
testcase_02 AC 63 ms
81,512 KB
testcase_03 AC 65 ms
81,536 KB
testcase_04 AC 519 ms
81,536 KB
testcase_05 AC 244 ms
81,536 KB
testcase_06 AC 245 ms
81,476 KB
testcase_07 AC 430 ms
81,536 KB
testcase_08 AC 503 ms
81,664 KB
testcase_09 AC 237 ms
81,656 KB
testcase_10 AC 180 ms
81,484 KB
testcase_11 AC 92 ms
81,536 KB
testcase_12 AC 80 ms
81,636 KB
testcase_13 AC 197 ms
81,536 KB
testcase_14 AC 223 ms
81,536 KB
testcase_15 AC 70 ms
81,536 KB
testcase_16 AC 116 ms
81,536 KB
testcase_17 AC 85 ms
81,520 KB
testcase_18 AC 270 ms
81,636 KB
testcase_19 AC 93 ms
81,536 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=5e6+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<=5e6;i++) fr[i]=(fr[i-1]*i)%mod;
    ifr[5000000]=inv(fr[5000000]);
    for(int i=4999999;~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