結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:41:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,015 bytes
コンパイル時間 1,649 ms
コンパイル使用メモリ 166,644 KB
実行使用メモリ 26,908 KB
最終ジャッジ日時 2024-09-25 15:41:42
合計ジャッジ時間 5,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
26,752 KB
testcase_01 AC 49 ms
26,820 KB
testcase_02 AC 49 ms
26,880 KB
testcase_03 AC 49 ms
26,772 KB
testcase_04 AC 400 ms
26,908 KB
testcase_05 WA -
testcase_06 AC 104 ms
26,744 KB
testcase_07 AC 301 ms
26,880 KB
testcase_08 AC 357 ms
26,880 KB
testcase_09 WA -
testcase_10 AC 106 ms
26,752 KB
testcase_11 AC 66 ms
26,752 KB
testcase_12 AC 57 ms
26,880 KB
testcase_13 AC 111 ms
26,752 KB
testcase_14 AC 132 ms
26,880 KB
testcase_15 AC 53 ms
26,776 KB
testcase_16 AC 77 ms
26,824 KB
testcase_17 AC 61 ms
26,880 KB
testcase_18 AC 155 ms
26,884 KB
testcase_19 AC 71 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long

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

int x = 1, inv[N], g[N], f[N], cnt = 0;

int mypow(int a, int b) {
  int ans = 1;
  while (b) {
    if (b & 1) {
      ans = ans * a % mod;
    }
    a = a * a % mod;
    b >>= 1;
  }
  return ans;
}

int C(int n, int m) {
  return f[n] * g[m] % mod * g[n - m] % mod;
}

void Solve() {
  int a, b;
  cin >> a >> b;
  for (int i = 2; i * i <= a; i++) {
    while (a % i == 0) {
      cnt++;
      a /= i;
    }
  }
  if (a != 1) {
    cnt++;
  }
  if (cnt < b) {
    cout << "0\n";
  }
  else cout << C(cnt - 1, b - 1) << "\n";
}

signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  inv[1] = f[0] = g[0] = 1;
  for (int i = 1; i <= 1000000; i++) {
    f[i] = f[i - 1] * i % mod;
    if (i > 1) inv[i] = inv[mod % i] * (mod - mod / i) % mod;
    g[i] = g[i - 1] * inv[i] % mod;
  }
  int n;
  cin >> n;
  for (int i = 1; i <= n; i++) {
    Solve();
  }
  return 0;
}

/*
.|.|.|.|.
4 * 3 * 2 * 1
*/
0