結果

問題 No.827 総神童数
ユーザー kotatsugamekotatsugame
提出日時 2019-05-04 01:28:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 70,628 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-06-10 20:18:12
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 5 ms
9,472 KB
testcase_02 AC 4 ms
9,472 KB
testcase_03 AC 4 ms
9,472 KB
testcase_04 AC 5 ms
9,472 KB
testcase_05 AC 5 ms
9,472 KB
testcase_06 AC 5 ms
9,472 KB
testcase_07 AC 5 ms
9,600 KB
testcase_08 AC 5 ms
9,472 KB
testcase_09 AC 322 ms
28,032 KB
testcase_10 AC 115 ms
15,184 KB
testcase_11 AC 10 ms
9,728 KB
testcase_12 AC 51 ms
12,416 KB
testcase_13 AC 256 ms
24,832 KB
testcase_14 AC 15 ms
10,112 KB
testcase_15 AC 103 ms
15,488 KB
testcase_16 AC 254 ms
20,608 KB
testcase_17 AC 312 ms
23,424 KB
testcase_18 AC 138 ms
16,744 KB
testcase_19 AC 319 ms
16,384 KB
testcase_20 AC 226 ms
14,592 KB
testcase_21 AC 166 ms
13,184 KB
testcase_22 AC 251 ms
15,148 KB
testcase_23 AC 6 ms
9,472 KB
testcase_24 AC 284 ms
15,744 KB
testcase_25 AC 209 ms
14,132 KB
testcase_26 AC 283 ms
15,744 KB
testcase_27 AC 190 ms
13,568 KB
testcase_28 AC 183 ms
13,568 KB
testcase_29 AC 147 ms
12,872 KB
testcase_30 AC 48 ms
10,496 KB
testcase_31 AC 114 ms
12,004 KB
testcase_32 AC 109 ms
11,904 KB
testcase_33 AC 314 ms
16,256 KB
testcase_34 AC 288 ms
15,744 KB
testcase_35 AC 114 ms
12,032 KB
testcase_36 AC 164 ms
13,184 KB
testcase_37 AC 211 ms
14,208 KB
testcase_38 AC 299 ms
16,040 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=1,ans;
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;
	for(int i=1;i++<N;)
	{
		F=F*i%mod;
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	dfs(0,-1,1);
	for(int i=0;i<N;i++)ans+=power(d[i],mod-2);
	cout<<ans%mod*F%mod<<endl;
}
0