結果

問題 No.2896 Monotonic Prime Factors
ユーザー vjudge1vjudge1
提出日時 2024-09-25 14:46:59
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 163,028 KB
実行使用メモリ 24,496 KB
最終ジャッジ日時 2024-09-25 14:47:05
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,432 KB
testcase_01 AC 32 ms
24,412 KB
testcase_02 AC 33 ms
24,308 KB
testcase_03 AC 34 ms
24,264 KB
testcase_04 AC 151 ms
24,496 KB
testcase_05 AC 83 ms
24,420 KB
testcase_06 AC 76 ms
24,444 KB
testcase_07 AC 128 ms
24,420 KB
testcase_08 AC 144 ms
24,424 KB
testcase_09 AC 82 ms
24,376 KB
testcase_10 AC 62 ms
24,492 KB
testcase_11 AC 39 ms
24,412 KB
testcase_12 AC 36 ms
24,344 KB
testcase_13 AC 62 ms
24,412 KB
testcase_14 AC 74 ms
24,444 KB
testcase_15 AC 53 ms
24,448 KB
testcase_16 AC 46 ms
24,460 KB
testcase_17 AC 39 ms
24,456 KB
testcase_18 AC 85 ms
24,436 KB
testcase_19 AC 40 ms
24,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

const int MAXV = 18 * 100001, MOD = 998244353;

int n, cnt, f[MAXV], inv[MAXV], Inv[MAXV];

void work() {
  inv[1] = f[0] = Inv[0] = 1;
  for(int i = 1; i < MAXV; ++i) {
    f[i] = 1ll * f[i - 1] * i % MOD;
    inv[i] = (i > 1 ? 1ll * (MOD - MOD / i) * inv[MOD % i] % MOD : 1);
    Inv[i] = 1ll * Inv[i - 1] * inv[i] % MOD;
  }
}

int C(int n, int m) {
  return (n < m ? 0 : 1ll * f[n] * Inv[m] % MOD * Inv[n - m] % MOD);
}

int main() {
  ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
  cin >> n;
  work();
  for(int i = 1, a, b; i <= n; ++i) {
    cin >> a >> b;
    for(int j = 2; j * j <= a; ++j) {
      for(; a % j == 0; a /= j, cnt++) {
      }
    }
    cnt += (a > 1);
    cout << C(cnt - 1, b - 1) << "\n";
  }
  return 0;
}
0