結果

問題 No.827 総神童数
ユーザー totori_nyaatotori_nyaa
提出日時 2019-08-06 21:40:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 170,960 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-07-18 14:26:25
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,704 KB
testcase_01 AC 5 ms
8,704 KB
testcase_02 AC 5 ms
8,704 KB
testcase_03 AC 5 ms
8,704 KB
testcase_04 AC 6 ms
8,704 KB
testcase_05 AC 5 ms
8,704 KB
testcase_06 AC 5 ms
8,704 KB
testcase_07 AC 5 ms
8,704 KB
testcase_08 AC 5 ms
8,576 KB
testcase_09 AC 147 ms
23,680 KB
testcase_10 AC 45 ms
13,312 KB
testcase_11 AC 7 ms
8,832 KB
testcase_12 AC 21 ms
11,008 KB
testcase_13 AC 104 ms
21,248 KB
testcase_14 AC 10 ms
9,216 KB
testcase_15 AC 43 ms
13,568 KB
testcase_16 AC 107 ms
17,920 KB
testcase_17 AC 121 ms
20,224 KB
testcase_18 AC 50 ms
14,720 KB
testcase_19 AC 128 ms
15,104 KB
testcase_20 AC 79 ms
13,440 KB
testcase_21 AC 55 ms
12,160 KB
testcase_22 AC 101 ms
13,824 KB
testcase_23 AC 6 ms
8,704 KB
testcase_24 AC 104 ms
14,336 KB
testcase_25 AC 71 ms
13,056 KB
testcase_26 AC 98 ms
14,208 KB
testcase_27 AC 64 ms
12,416 KB
testcase_28 AC 63 ms
12,416 KB
testcase_29 AC 50 ms
11,648 KB
testcase_30 AC 18 ms
9,600 KB
testcase_31 AC 38 ms
11,008 KB
testcase_32 AC 39 ms
11,008 KB
testcase_33 AC 110 ms
14,720 KB
testcase_34 AC 108 ms
14,208 KB
testcase_35 AC 39 ms
11,136 KB
testcase_36 AC 55 ms
11,904 KB
testcase_37 AC 73 ms
13,056 KB
testcase_38 AC 114 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;


const long long mod = 1e9+7;

//mod mでの a の逆元を求める
long long modinv(long long a) {
    long long b = mod, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= mod; 
    if (u < 0) u += mod;
    return u;
}
 

ll n;
vector<vector<int>> v(200100);
bool used[200100];

vector<int> dep(200010);

void dfs(int p,int d){
    used[p]=1;
    d++;
    dep[p]=d;
    for(auto i:v[p]){
        if(!used[i]){
            dfs(i,d);
        }
    }
}

signed main(){
    //cout << setprecision(12) ;
    ios::sync_with_stdio(false);
	cin.tie(0);


    cin>>n;
    for(int i=0;i<n-1;i++){
        int a,b;
        cin>>a>>b;
        a--,b--;
        v[a].push_back(b);
        v[b].push_back(a);
    }    
    dfs(0,0);
    ll ans=0;
    for(int i=0;i<n;i++){
        ans += modinv(dep[i]);
    }
    for(int i=1;i<=n;i++){
        ans*=i;
        ans%=mod;
    }
    cout<<ans<<endl;


    
}
0