結果

問題 No.827 総神童数
ユーザー 37zigen37zigen
提出日時 2019-05-03 22:35:16
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,622 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 79,252 KB
実行使用メモリ 147,748 KB
最終ジャッジ日時 2024-06-10 06:44:51
合計ジャッジ時間 38,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
76,656 KB
testcase_01 AC 217 ms
76,716 KB
testcase_02 AC 217 ms
76,524 KB
testcase_03 AC 218 ms
76,712 KB
testcase_04 AC 221 ms
76,456 KB
testcase_05 AC 214 ms
76,720 KB
testcase_06 AC 218 ms
76,724 KB
testcase_07 AC 217 ms
76,472 KB
testcase_08 AC 222 ms
76,464 KB
testcase_09 TLE -
testcase_10 AC 763 ms
123,936 KB
testcase_11 AC 366 ms
88,848 KB
testcase_12 AC 585 ms
98,396 KB
testcase_13 AC 1,878 ms
139,672 KB
testcase_14 AC 403 ms
90,032 KB
testcase_15 AC 751 ms
120,800 KB
testcase_16 AC 1,631 ms
135,012 KB
testcase_17 AC 1,752 ms
141,408 KB
testcase_18 AC 846 ms
131,020 KB
testcase_19 AC 1,400 ms
136,684 KB
testcase_20 AC 1,211 ms
129,152 KB
testcase_21 AC 1,102 ms
124,004 KB
testcase_22 AC 1,173 ms
131,044 KB
testcase_23 AC 348 ms
80,100 KB
testcase_24 AC 1,324 ms
133,280 KB
testcase_25 AC 1,242 ms
125,980 KB
testcase_26 AC 1,257 ms
133,848 KB
testcase_27 AC 1,118 ms
123,456 KB
testcase_28 AC 1,101 ms
123,836 KB
testcase_29 AC 1,004 ms
121,876 KB
testcase_30 AC 542 ms
93,304 KB
testcase_31 AC 888 ms
113,316 KB
testcase_32 AC 774 ms
112,012 KB
testcase_33 AC 1,419 ms
135,796 KB
testcase_34 AC 1,295 ms
133,556 KB
testcase_35 AC 877 ms
113,760 KB
testcase_36 AC 961 ms
121,424 KB
testcase_37 AC 1,184 ms
126,464 KB
testcase_38 AC 1,387 ms
133,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}

	int[] depth;
	ArrayList<Integer>[] g;
	long mo = (long) 1e9 + 7;
	long[] fac = new long[1000000];
	long[] ifac = new long[1000000];
	long[] inv = new long[1000000];

	{
		fac[0] = ifac[0] = inv[0] = inv[1] = 1;
		for (int i = 1; i < fac.length; ++i) {
			fac[i] = fac[i - 1] * i % mo;
		}
		// 0 = p/m * m + p%mo
		// inv(m) = inv(p%m)*(p/m)
		for (int i = 2; i < inv.length; ++i) {
			inv[i] = mo - inv[(int) (mo % i)] * (mo / i) % mo;
		}
		for (int i = 1; i < ifac.length; ++i) {
			ifac[i] = ifac[i - 1] * inv[i] % mo;
		}
	}

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = a * a % mo) {
			ret = ret * a % mo;
		}
		return ret;
	}

	void dfs(int cur, int par) {
		for (int dst : g[cur]) {
			if (dst == par) {
				continue;
			}
			depth[dst] = depth[cur] + 1;
			dfs(dst, cur);
		}
	}

	void run() throws Exception {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] u = new int[N - 1];
		int[] v = new int[N - 1];
		depth = new int[N];

		long ans = 0;

		g = new ArrayList[N];
		for (int i = 0; i < N; ++i) {
			g[i] = new ArrayList<>();
		}

		for (int i = 0; i < N - 1; ++i) {
			u[i] = sc.nextInt();
			v[i] = sc.nextInt();
			--u[i];
			--v[i];
			g[u[i]].add(v[i]);
			g[v[i]].add(u[i]);
		}

		dfs(0, -1);

		for (int i = 0; i < N; ++i) {
			ans = (ans + fac[N] * inv[depth[i] + 1] % mo) % mo;
		}

		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0