結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
26,880 KB
testcase_01 AC 41 ms
26,864 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 97 ms
26,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 97 ms
26,820 KB
testcase_11 AC 53 ms
26,752 KB
testcase_12 AC 47 ms
26,752 KB
testcase_13 AC 106 ms
26,752 KB
testcase_14 AC 119 ms
26,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 51 ms
26,852 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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