結果
問題 | No.2896 Monotonic Prime Factors |
ユーザー | Carpenters-Cat |
提出日時 | 2024-09-20 21:44:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 4,554 ms |
コンパイル使用メモリ | 265,136 KB |
実行使用メモリ | 19,036 KB |
最終ジャッジ日時 | 2024-09-20 21:44:46 |
合計ジャッジ時間 | 8,405 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using mint = modint998244353; int main () { int Q; cin >> Q; std::vector<mint> kai(Q * 20, 1), fkai(Q * 20, 1) ; for (int i = 1; i < Q * 20; i ++) kai[i] = kai[i-1] * i; fkai[Q*20-1] = kai[Q*20-1].inv(); for (int i = Q*20-1; i; i --) { fkai[i-1] = fkai[i] * i; } int s = 0; auto comb = [&](int n, int r) -> mint{ if (r < 0 || n < r) return 0; return kai[n] * fkai[r] * fkai[n - r]; }; while (Q--) { int a; cin >> a; int a2 = a; for (int i = 2; i * i <= a2; i ++) { if (a == 1) break; while (a % i == 0) { s ++; a /= i; } } s += (a > 1); int b; cin >> b; cout << comb(s - 1, b).val() << endl; } }