結果

問題 No.2980 Planar Tree 2
ユーザー kotatsugamekotatsugame
提出日時 2024-12-25 06:59:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 31,320 KB
最終ジャッジ日時 2024-12-25 06:59:30
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
15,872 KB
testcase_01 AC 87 ms
15,872 KB
testcase_02 AC 88 ms
15,840 KB
testcase_03 AC 4 ms
9,472 KB
testcase_04 AC 5 ms
9,532 KB
testcase_05 AC 88 ms
15,940 KB
testcase_06 AC 91 ms
16,128 KB
testcase_07 AC 123 ms
15,976 KB
testcase_08 AC 100 ms
16,000 KB
testcase_09 AC 91 ms
15,736 KB
testcase_10 AC 96 ms
15,716 KB
testcase_11 AC 112 ms
15,900 KB
testcase_12 AC 83 ms
15,832 KB
testcase_13 AC 92 ms
16,000 KB
testcase_14 AC 88 ms
15,832 KB
testcase_15 AC 71 ms
31,320 KB
testcase_16 AC 4 ms
9,472 KB
testcase_17 AC 4 ms
9,600 KB
testcase_18 AC 4 ms
9,552 KB
testcase_19 AC 4 ms
9,568 KB
testcase_20 AC 4 ms
9,716 KB
testcase_21 AC 4 ms
9,540 KB
testcase_22 AC 5 ms
9,600 KB
testcase_23 AC 4 ms
9,540 KB
testcase_24 AC 4 ms
9,600 KB
testcase_25 AC 4 ms
9,452 KB
testcase_26 AC 78 ms
16,688 KB
testcase_27 AC 77 ms
16,716 KB
testcase_28 AC 78 ms
16,512 KB
testcase_29 AC 48 ms
16,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
vector<int>G[2<<17];
mint ans=1;
void dfs(int u,int p)
{
	int sz=0;
	mint t=1;
	for(int v:G[u])if(v!=p)
	{
		t*=++sz;
		dfs(v,u);
	}
	ans*=t*(sz+1);
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	dfs(0,-1);
	mint t=G[0].size()+1;
	for(int i=1;i<N;i++)t*=i;
	ans/=t;
	cout<<ans.val()<<endl;
}
0