結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-25 14:45:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 202,660 KB
実行使用メモリ 26,164 KB
最終ジャッジ日時 2024-09-25 14:45:24
合計ジャッジ時間 5,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,256 KB
testcase_01 AC 25 ms
16,128 KB
testcase_02 AC 25 ms
16,128 KB
testcase_03 AC 25 ms
16,128 KB
testcase_04 AC 211 ms
16,256 KB
testcase_05 WA -
testcase_06 AC 222 ms
16,128 KB
testcase_07 AC 206 ms
16,128 KB
testcase_08 AC 213 ms
16,128 KB
testcase_09 WA -
testcase_10 AC 133 ms
16,128 KB
testcase_11 AC 51 ms
16,128 KB
testcase_12 AC 37 ms
16,128 KB
testcase_13 AC 133 ms
16,256 KB
testcase_14 AC 163 ms
16,128 KB
testcase_15 AC 29 ms
16,256 KB
testcase_16 AC 69 ms
16,128 KB
testcase_17 AC 44 ms
16,256 KB
testcase_18 AC 214 ms
16,128 KB
testcase_19 AC 49 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2e6 + 5, mod = 998244353;

int f[N], g[N], inv[N], p[N], a, b, cnt, vis[N], q;
vector<int>e;

int C(int n, int m){
  if(m > n)return 0;
  return 1ll * f[n] * g[m] % mod * g[n - m] % mod;
}

int main(){
  f[0] = g[0] = inv[1] = 1;
  for(int i = 1; i <= 1000000; i++){
    f[i] = 1ll * f[i - 1] * i % mod;
    if(i > 1){
      inv[i] = 1ll * inv[mod % i] * (mod - mod / i) % mod;
    }
    g[i] = 1ll * g[i - 1] * inv[i] % mod;
  }
  for(int i = 2; i <= 100000; ++i){
    if(!vis[i]){
      e.push_back(i);
      p[i] = i;
    }
    for(auto v : e){
      if(1ll * v * i > 100000)break;
      vis[v * i] = 1;
      p[v * i] = v;
      if(i % v == 0)break;
    }
  }
  cin >> q;
  while(q--){
    cin >> a >> b;
    for(; a > 1; a /= p[a], cnt++){
    }
    cout << C(cnt - 1, b - 1) << '\n';
  }
  return 0;
}
0