結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-25 14:39:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 203,704 KB
実行使用メモリ 23,060 KB
最終ジャッジ日時 2024-09-25 14:39:17
合計ジャッジ時間 8,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,324 KB
testcase_01 WA -
testcase_02 AC 22 ms
17,848 KB
testcase_03 AC 22 ms
18,708 KB
testcase_04 AC 207 ms
17,804 KB
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 1e6 + 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){
  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