結果

問題 No.827 総神童数
ユーザー kotatsugamekotatsugame
提出日時 2019-05-04 01:26:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 71,992 KB
実行使用メモリ 29,780 KB
最終ジャッジ日時 2024-06-10 20:08:33
合計ジャッジ時間 8,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,172 KB
testcase_01 AC 4 ms
11,388 KB
testcase_02 AC 4 ms
12,348 KB
testcase_03 AC 4 ms
11,612 KB
testcase_04 AC 4 ms
12,496 KB
testcase_05 AC 4 ms
10,876 KB
testcase_06 AC 4 ms
11,380 KB
testcase_07 AC 3 ms
11,072 KB
testcase_08 AC 4 ms
11,864 KB
testcase_09 AC 359 ms
29,780 KB
testcase_10 AC 125 ms
16,772 KB
testcase_11 AC 10 ms
11,424 KB
testcase_12 AC 57 ms
14,388 KB
testcase_13 AC 283 ms
26,388 KB
testcase_14 AC 16 ms
11,344 KB
testcase_15 AC 111 ms
16,844 KB
testcase_16 AC 282 ms
22,632 KB
testcase_17 AC 341 ms
25,368 KB
testcase_18 AC 145 ms
18,780 KB
testcase_19 AC 379 ms
18,344 KB
testcase_20 AC 261 ms
16,404 KB
testcase_21 AC 185 ms
14,612 KB
testcase_22 AC 281 ms
16,768 KB
testcase_23 AC 6 ms
11,784 KB
testcase_24 AC 326 ms
17,380 KB
testcase_25 AC 243 ms
16,620 KB
testcase_26 AC 330 ms
17,500 KB
testcase_27 AC 216 ms
15,172 KB
testcase_28 AC 216 ms
15,100 KB
testcase_29 AC 166 ms
14,436 KB
testcase_30 AC 52 ms
12,560 KB
testcase_31 AC 128 ms
13,420 KB
testcase_32 AC 121 ms
13,440 KB
testcase_33 AC 355 ms
18,052 KB
testcase_34 AC 328 ms
17,448 KB
testcase_35 AC 129 ms
14,856 KB
testcase_36 AC 187 ms
14,856 KB
testcase_37 AC 240 ms
15,724 KB
testcase_38 AC 352 ms
17,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:15:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   15 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
long mod=1e9+7,F[2<<17];
long power(long a,long b){return b?power(a*a%mod,b/2)*(b%2?a:1)%mod:1;}
int d[2<<17];
vector<int>G[2<<17];
void dfs(int u,int p,int di)
{
	d[u]=di;
	for(int i=0;i<G[u].size();i++)
		if(G[u][i]!=p)dfs(G[u][i],u,di+1);
}
int N;
main()
{
	cin>>N;
	F[0]=1;
	for(int i=1;i<=N;i++)F[i]=F[i-1]*i%mod;
	for(int i=1;i<N;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	dfs(0,-1,1);
	long ans=0;
	for(int i=0;i<N;i++)
	{
		(ans+=F[N]*power(d[i],mod-2))%=mod;
	}
	cout<<ans<<endl;
}
0