結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-25 14:49:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 202,900 KB
実行使用メモリ 32,708 KB
最終ジャッジ日時 2024-09-25 14:49:27
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
32,708 KB
testcase_01 AC 43 ms
29,484 KB
testcase_02 AC 42 ms
29,908 KB
testcase_03 AC 43 ms
29,916 KB
testcase_04 AC 233 ms
29,664 KB
testcase_05 AC 265 ms
29,736 KB
testcase_06 AC 248 ms
31,420 KB
testcase_07 AC 235 ms
30,244 KB
testcase_08 AC 230 ms
29,744 KB
testcase_09 AC 261 ms
29,820 KB
testcase_10 AC 148 ms
30,004 KB
testcase_11 AC 68 ms
31,076 KB
testcase_12 AC 56 ms
30,224 KB
testcase_13 AC 156 ms
30,244 KB
testcase_14 AC 205 ms
31,336 KB
testcase_15 AC 47 ms
31,368 KB
testcase_16 AC 92 ms
30,384 KB
testcase_17 AC 62 ms
30,108 KB
testcase_18 AC 227 ms
29,760 KB
testcase_19 AC 68 ms
29,708 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 <= 2000000; 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