結果

問題 No.2384 Permutations of Permutations
ユーザー colognecologne
提出日時 2023-07-14 21:52:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 3,176 ms
コンパイル使用メモリ 248,128 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 06:47:49
合計ジャッジ時間 3,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Mint = atcoder::modint998244353;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	int N, K;
	cin >> N >> K;
	vector<Mint> F(N + 1);
	F[0] = 1;
	for (int i = 1; i <= N; i++)
		F[i] = i * F[i - 1];

	if (N == 4 || N == 5 || N > 6)
		cout << (F[N] / (F[N] / F[K] / F[N - K] * F[K - 1])).val() << endl;
	if (N == 3)
	{
		cout << 2 << endl;
	}
	if (N == 2)
	{
		cout << 1 << endl;
	}
	if (N == 6)
	{
		cout << (2 * F[N] / (F[N] / F[K] / F[N - K] * F[K - 1])).val() << endl;
	}
}
0