結果

問題 No.2980 Planar Tree 2
ユーザー 👑 NachiaNachia
提出日時 2024-12-04 00:08:55
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-04 00:12:40
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
5,248 KB
testcase_01 AC 43 ms
5,248 KB
testcase_02 AC 44 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 45 ms
5,248 KB
testcase_06 AC 44 ms
5,248 KB
testcase_07 AC 43 ms
5,248 KB
testcase_08 AC 43 ms
5,248 KB
testcase_09 AC 41 ms
5,248 KB
testcase_10 AC 42 ms
5,248 KB
testcase_11 AC 42 ms
5,248 KB
testcase_12 AC 42 ms
5,248 KB
testcase_13 AC 42 ms
5,248 KB
testcase_14 AC 42 ms
5,248 KB
testcase_15 AC 40 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 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 45 ms
5,248 KB
testcase_27 AC 43 ms
5,248 KB
testcase_28 AC 43 ms
5,248 KB
testcase_29 AC 34 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define rep(i,n) for(int i=0; i<int(n); i++)
using namespace std;
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int N; cin >> N;
    vector<int> C(N);
    rep(i,N*2-2){ int u; cin >> u; C[u-1]++; }
    vector<Modint> F(N+1);
    F[0] = 1;
    for(int i=1; i<=N; i++) F[i] = F[i-1] * i;
    Modint ans = 1;
    rep(i,N) ans *= F[C[i]];
    ans /= F[N-1];
    cout << ans.val() << endl;
    return 0;
}
0