結果
問題 | No.2896 Monotonic Prime Factors |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 15:21:01 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 169 ms / 2,000 ms |
コード長 | 937 bytes |
コンパイル時間 | 3,299 ms |
コンパイル使用メモリ | 246,668 KB |
実行使用メモリ | 26,972 KB |
最終ジャッジ日時 | 2024-09-25 15:21:08 |
合計ジャッジ時間 | 6,236 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
26,752 KB |
testcase_01 | AC | 42 ms
26,972 KB |
testcase_02 | AC | 43 ms
26,752 KB |
testcase_03 | AC | 43 ms
26,880 KB |
testcase_04 | AC | 169 ms
26,880 KB |
testcase_05 | AC | 92 ms
26,752 KB |
testcase_06 | AC | 83 ms
26,880 KB |
testcase_07 | AC | 144 ms
26,880 KB |
testcase_08 | AC | 158 ms
26,880 KB |
testcase_09 | AC | 87 ms
26,752 KB |
testcase_10 | AC | 69 ms
26,880 KB |
testcase_11 | AC | 47 ms
26,880 KB |
testcase_12 | AC | 55 ms
26,752 KB |
testcase_13 | AC | 74 ms
26,880 KB |
testcase_14 | AC | 80 ms
26,880 KB |
testcase_15 | AC | 43 ms
26,752 KB |
testcase_16 | AC | 54 ms
26,880 KB |
testcase_17 | AC | 46 ms
26,880 KB |
testcase_18 | AC | 93 ms
26,752 KB |
testcase_19 | AC | 47 ms
26,880 KB |
ソースコード
#include <bits/stdc++.h> #define _1 (__int128)1 using namespace std; using ll = long long; void FileIO (const string s) { freopen(string(s + ".in").c_str(), "r", stdin); freopen(string(s + ".out").c_str(), "w", stdout); } const int N = 2e6 + 10, mod = 998244353; int n, inv[N], x[N], f[N], a, b, ans; bool ip[N]; inline int C (int a, int b) { if (a < b) return 0; return 1ll * f[a] * x[b] % mod * x[a - b] % mod; } signed main () { ios::sync_with_stdio(0), cin.tie(0); // FileIO(""); inv[1] = x[0] = f[0] = 1; for (int i = 2; i <= 2e6; i++) inv[i] = 1ll * (mod - mod / i) * inv[mod % i] % mod; for (int i = 1; i <= 2e6; i++) x[i] = 1ll * x[i - 1] * inv[i] % mod, f[i] = 1ll * f[i - 1] * i % mod; for (cin >> n; n--; ) { cin >> a >> b; for (int i = 2; i * i <= a; i++) while (a % i == 0) a /= i, ans++; if (a > 1) ans++; cout << C(ans - 1, b - 1) << '\n'; } return 0; }