結果

問題 No.2511 Mountain Sequence
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-10-20 22:26:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 202,436 KB
実行使用メモリ 9,772 KB
最終ジャッジ日時 2024-09-20 20:01:18
合計ジャッジ時間 3,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 6 ms
8,588 KB
testcase_03 AC 3 ms
7,568 KB
testcase_04 AC 4 ms
8,064 KB
testcase_05 AC 5 ms
8,512 KB
testcase_06 AC 6 ms
8,532 KB
testcase_07 AC 8 ms
9,332 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 8 ms
9,428 KB
testcase_11 AC 9 ms
9,524 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 8 ms
9,772 KB
testcase_14 AC 8 ms
9,580 KB
testcase_15 AC 9 ms
9,612 KB
testcase_16 AC 8 ms
9,584 KB
testcase_17 AC 8 ms
9,608 KB
testcase_18 AC 8 ms
9,516 KB
testcase_19 AC 8 ms
9,640 KB
testcase_20 AC 8 ms
9,636 KB
testcase_21 AC 8 ms
9,572 KB
testcase_22 AC 9 ms
9,648 KB
testcase_23 AC 4 ms
8,288 KB
testcase_24 AC 5 ms
8,240 KB
testcase_25 AC 8 ms
9,572 KB
testcase_26 AC 3 ms
7,656 KB
testcase_27 AC 6 ms
8,916 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 9 ms
9,648 KB
testcase_30 AC 8 ms
9,632 KB
testcase_31 AC 8 ms
9,748 KB
testcase_32 AC 8 ms
9,636 KB
testcase_33 AC 8 ms
9,548 KB
testcase_34 AC 8 ms
9,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll const m = 998244353;
ll mpow(ll a, ll n) {
	ll ret = 1;
	while (n) {
		if (n & 1) ret = (ret * a) % m;
		n >>= 1;
		a = (a * a) % m;
	}
	return ret;
}
int main() {
	int N, M;
	cin >> N >> M;
	ll kai[400040], fkai[400040];
	kai[0] = 1;
	for (int i = 1; i <= M * 2; i ++) {
		kai[i] = (kai[i - 1] * i) % m;
	}
	fkai[M * 2] = mpow(kai[M * 2], m - 2);
	for (int i = M * 2; i > 0; i --) {
		fkai[i - 1] = (fkai[i] * i) % m;
	}
	ll ans = 0;
	auto comb = [&](int n, int r) -> ll {
		if (r < 0 || n < r) return 0ll;
		ll ret = (kai[n] * fkai[r]) % m;
		ret = (ret * fkai[n - r]) % m;
		return ret;
	};
	for (int x = 1; x <= M; x ++) {
		int n = (x - 1) * 2;
		ans += comb(n, N - 1);
		ans %= m;
	}
	cout << ans << endl;
}
0