結果

問題 No.2896 Monotonic Prime Factors
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-09-20 21:46:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 3,897 ms
コンパイル使用メモリ 263,132 KB
実行使用メモリ 19,036 KB
最終ジャッジ日時 2024-09-20 21:47:10
合計ジャッジ時間 7,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 307 ms
19,036 KB
testcase_05 AC 244 ms
18,816 KB
testcase_06 AC 229 ms
18,944 KB
testcase_07 AC 266 ms
18,944 KB
testcase_08 AC 281 ms
18,944 KB
testcase_09 AC 217 ms
18,916 KB
testcase_10 AC 135 ms
11,520 KB
testcase_11 AC 33 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 148 ms
12,160 KB
testcase_14 AC 212 ms
14,664 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 62 ms
7,040 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 242 ms
17,756 KB
testcase_19 AC 33 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 - 1).val() << endl;
	}
}
0