結果

問題 No.827 総神童数
ユーザー 37zigen37zigen
提出日時 2019-05-03 22:41:42
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,659 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 79,772 KB
実行使用メモリ 146,340 KB
最終ジャッジ日時 2024-06-10 06:47:02
合計ジャッジ時間 38,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
65,096 KB
testcase_01 AC 217 ms
65,272 KB
testcase_02 AC 213 ms
65,328 KB
testcase_03 AC 211 ms
65,008 KB
testcase_04 AC 216 ms
64,960 KB
testcase_05 AC 214 ms
65,144 KB
testcase_06 AC 216 ms
65,280 KB
testcase_07 AC 211 ms
65,096 KB
testcase_08 AC 213 ms
65,152 KB
testcase_09 TLE -
testcase_10 AC 789 ms
114,480 KB
testcase_11 AC 378 ms
77,580 KB
testcase_12 AC 572 ms
88,200 KB
testcase_13 AC 1,832 ms
127,976 KB
testcase_14 AC 390 ms
78,456 KB
testcase_15 AC 772 ms
107,920 KB
testcase_16 AC 1,558 ms
124,476 KB
testcase_17 AC 1,765 ms
130,472 KB
testcase_18 AC 801 ms
118,648 KB
testcase_19 AC 1,381 ms
125,404 KB
testcase_20 AC 1,157 ms
117,440 KB
testcase_21 AC 1,022 ms
112,136 KB
testcase_22 AC 1,134 ms
119,536 KB
testcase_23 AC 352 ms
68,356 KB
testcase_24 AC 1,293 ms
122,540 KB
testcase_25 AC 1,176 ms
115,488 KB
testcase_26 AC 1,218 ms
122,312 KB
testcase_27 AC 1,054 ms
113,112 KB
testcase_28 AC 1,076 ms
113,140 KB
testcase_29 AC 977 ms
110,140 KB
testcase_30 AC 534 ms
83,384 KB
testcase_31 AC 832 ms
102,416 KB
testcase_32 AC 772 ms
104,728 KB
testcase_33 AC 1,360 ms
124,400 KB
testcase_34 AC 1,263 ms
122,392 KB
testcase_35 AC 873 ms
102,184 KB
testcase_36 AC 959 ms
110,972 KB
testcase_37 AC 1,187 ms
115,620 KB
testcase_38 AC 1,322 ms
123,876 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);

		ans = fac[N];

		long s = 0;

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

		ans = ans * s % mo;

		System.out.println(ans);
	}

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

}
0