結果

問題 No.2980 Planar Tree 2
ユーザー noya2noya2
提出日時 2024-12-05 19:24:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 5,451 ms
コンパイル使用メモリ 309,104 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-05 19:26:51
合計ジャッジ時間 9,346 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
5,248 KB
testcase_01 AC 124 ms
5,248 KB
testcase_02 AC 124 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 123 ms
5,248 KB
testcase_06 AC 126 ms
5,248 KB
testcase_07 AC 121 ms
5,248 KB
testcase_08 AC 122 ms
5,248 KB
testcase_09 AC 117 ms
5,248 KB
testcase_10 AC 116 ms
5,248 KB
testcase_11 AC 121 ms
5,248 KB
testcase_12 AC 119 ms
5,248 KB
testcase_13 AC 122 ms
5,248 KB
testcase_14 AC 121 ms
5,248 KB
testcase_15 AC 122 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 123 ms
5,248 KB
testcase_27 AC 125 ms
5,248 KB
testcase_28 AC 125 ms
5,248 KB
testcase_29 AC 95 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
	int n; cin >> n;
	vector<int> deg(n,0);
	for (int i = 0; i < n-1; i++){
		int u, v; cin >> u >> v; u--, v--;
		deg[u]++, deg[v]++;
	}
	vector<mint> fact(n); fact[0] = 1;
	for (int i = 1 ; i < n; i++){
		fact[i] = fact[i-1] * i;
	}
	mint ans = fact[n-1].inv();
	for (int i = 0; i < n; i++){
		ans *= fact[deg[i]];
	}
	cout << ans.val() << endl;
}
0