結果

問題 No.827 総神童数
ユーザー pockynypockyny
提出日時 2019-06-26 21:51:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 22,724 KB
最終ジャッジ日時 2024-06-26 04:44:39
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
9,728 KB
testcase_01 AC 10 ms
9,856 KB
testcase_02 AC 11 ms
9,728 KB
testcase_03 AC 11 ms
9,728 KB
testcase_04 AC 11 ms
9,856 KB
testcase_05 AC 10 ms
9,728 KB
testcase_06 AC 10 ms
9,728 KB
testcase_07 AC 10 ms
9,600 KB
testcase_08 AC 10 ms
9,600 KB
testcase_09 AC 188 ms
22,724 KB
testcase_10 AC 64 ms
14,080 KB
testcase_11 AC 13 ms
10,112 KB
testcase_12 AC 33 ms
11,904 KB
testcase_13 AC 153 ms
20,608 KB
testcase_14 AC 16 ms
10,112 KB
testcase_15 AC 65 ms
13,952 KB
testcase_16 AC 146 ms
18,688 KB
testcase_17 AC 179 ms
20,448 KB
testcase_18 AC 85 ms
14,976 KB
testcase_19 AC 211 ms
18,244 KB
testcase_20 AC 145 ms
16,000 KB
testcase_21 AC 114 ms
14,336 KB
testcase_22 AC 166 ms
16,640 KB
testcase_23 AC 11 ms
9,728 KB
testcase_24 AC 182 ms
17,280 KB
testcase_25 AC 127 ms
15,488 KB
testcase_26 AC 176 ms
17,472 KB
testcase_27 AC 111 ms
14,976 KB
testcase_28 AC 113 ms
14,720 KB
testcase_29 AC 89 ms
13,824 KB
testcase_30 AC 33 ms
11,008 KB
testcase_31 AC 68 ms
12,928 KB
testcase_32 AC 67 ms
12,928 KB
testcase_33 AC 197 ms
18,024 KB
testcase_34 AC 181 ms
17,280 KB
testcase_35 AC 71 ms
12,928 KB
testcase_36 AC 101 ms
14,080 KB
testcase_37 AC 137 ms
15,488 KB
testcase_38 AC 191 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
typedef long long ll;
vector<ll> G[200010];
ll d[200010],mod = 1000000007,inv[200010],ans = 0;
void solve(){
	inv[1] = 1;
	for(int i=2;i<=200000;i++){
		inv[i] = mod - (mod/i)*inv[mod%i]%mod;
	}
}
void dfs(int s, int p){
	for(int v:G[s]){
		if(v==p) continue;
		d[v] = d[s] + 1;
		dfs(v,s);
	}
}
int main(){
	int i,n;
	cin >> n;
	for(i=0;i<n-1;i++){
		int a,b; cin >> a >> b; a--; b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	d[0] = 1;
	dfs(0,-1);
	solve();
	ll f = 1;
	for(i=2;i<=n;i++){
		(f *= i) %= mod;
	}
	for(i=0;i<n;i++){
		(ans += f*inv[d[i]]%mod) %= mod;
	}
	cout << ans << endl;
}
0