結果
問題 | No.2980 Planar Tree 2 |
ユーザー | kotatsugame |
提出日時 | 2024-12-25 06:55:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 627 bytes |
コンパイル時間 | 937 ms |
コンパイル使用メモリ | 72,576 KB |
実行使用メモリ | 31,360 KB |
最終ジャッジ日時 | 2024-12-25 06:55:54 |
合計ジャッジ時間 | 5,753 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 173 ms
15,744 KB |
testcase_02 | WA | - |
testcase_03 | AC | 7 ms
9,472 KB |
testcase_04 | AC | 8 ms
9,600 KB |
testcase_05 | WA | - |
testcase_06 | AC | 161 ms
16,128 KB |
testcase_07 | WA | - |
testcase_08 | AC | 169 ms
15,872 KB |
testcase_09 | AC | 158 ms
15,872 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 160 ms
15,872 KB |
testcase_13 | AC | 162 ms
16,000 KB |
testcase_14 | WA | - |
testcase_15 | AC | 91 ms
31,360 KB |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
9,600 KB |
testcase_18 | AC | 7 ms
9,600 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 8 ms
9,600 KB |
testcase_22 | AC | 7 ms
9,472 KB |
testcase_23 | AC | 7 ms
9,472 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 134 ms
16,768 KB |
testcase_27 | AC | 130 ms
16,640 KB |
testcase_28 | AC | 134 ms
16,512 KB |
testcase_29 | WA | - |
ソースコード
#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); for(int i=1;i<G[0].size();i++)ans*=i; ans/=2; //cout<<ans.val()<<endl; mint t=1; for(int i=1;i<N;i++)t*=i; ans/=t; cout<<ans.val()<<endl; }