結果

問題 No.827 総神童数
ユーザー ks2mks2m
提出日時 2019-05-04 00:45:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,643 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 80,476 KB
実行使用メモリ 108,208 KB
最終ジャッジ日時 2024-06-10 08:38:11
合計ジャッジ時間 36,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,944 KB
testcase_01 AC 107 ms
41,208 KB
testcase_02 AC 113 ms
41,432 KB
testcase_03 AC 111 ms
41,036 KB
testcase_04 AC 110 ms
41,312 KB
testcase_05 AC 108 ms
41,092 KB
testcase_06 AC 106 ms
40,740 KB
testcase_07 RE -
testcase_08 AC 106 ms
40,976 KB
testcase_09 AC 1,453 ms
108,208 KB
testcase_10 AC 737 ms
68,628 KB
testcase_11 AC 208 ms
46,088 KB
testcase_12 AC 516 ms
53,428 KB
testcase_13 AC 1,213 ms
93,060 KB
testcase_14 AC 275 ms
48,972 KB
testcase_15 AC 769 ms
66,792 KB
testcase_16 AC 1,281 ms
94,120 KB
testcase_17 AC 1,471 ms
104,296 KB
testcase_18 AC 818 ms
74,068 KB
testcase_19 AC 1,725 ms
107,252 KB
testcase_20 AC 1,254 ms
90,928 KB
testcase_21 AC 1,101 ms
86,712 KB
testcase_22 AC 1,437 ms
93,544 KB
testcase_23 AC 188 ms
45,900 KB
testcase_24 AC 1,459 ms
96,336 KB
testcase_25 AC 1,252 ms
88,928 KB
testcase_26 AC 1,485 ms
95,908 KB
testcase_27 AC 1,152 ms
86,240 KB
testcase_28 AC 1,227 ms
86,632 KB
testcase_29 AC 1,021 ms
75,592 KB
testcase_30 AC 526 ms
53,124 KB
testcase_31 AC 855 ms
73,528 KB
testcase_32 AC 809 ms
71,596 KB
testcase_33 AC 1,658 ms
97,548 KB
testcase_34 AC 1,446 ms
95,020 KB
testcase_35 AC 877 ms
73,488 KB
testcase_36 AC 1,179 ms
84,904 KB
testcase_37 AC 1,235 ms
87,932 KB
testcase_38 AC 1,625 ms
97,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Map<Integer, List<Integer>> map = new HashMap<Integer, List<Integer>>();
		for (int i = 0; i < n - 1; i++) {
			int u = sc.nextInt();
			int v = sc.nextInt();

			List<Integer> list1 = map.get(u);
			if (list1 == null) {
				list1 = new ArrayList<Integer>();
				map.put(u, list1);
			}
			list1.add(v);

			List<Integer> list2 = map.get(v);
			if (list2 == null) {
				list2 = new ArrayList<Integer>();
				map.put(v, list2);
			}
			list2.add(u);
		}
		sc.close();

		int[] dep = new int[n + 1];
		Queue<Integer> que = new ArrayDeque<Integer>();
		que.add(1);
		dep[1] = 1;
		while (!que.isEmpty()) {
			Integer cur = que.poll();
			List<Integer> list = map.get(cur);
			for (Integer next : list) {
				if (dep[next] == 0) {
					que.add(next);
					dep[next] = dep[cur] + 1;
				}
			}
		}

		int mod = 1000000007;
		long p = 1;
		for (int i = 1; i <= n; i++) {
			p *= i;
			p %= mod;
		}

		long ans = 0;
		for (int i = 1; i <= n; i++) {
			ans += p * modinv(dep[i], mod) % mod;
			ans %= mod;
		}
		System.out.println(ans);
	}

	static long modinv(long a, long m) {
		long b = m;
		long u = 1;
		long v = 0;
		long tmp = 0;

		while (b > 0) {
			long t = a / b;
			a -= t * b;
			tmp = a;
			a = b;
			b = tmp;

			u -= t * v;
			tmp = u;
			u = v;
			v = tmp;
		}

		u %= m;
		if (u < 0) u += m;
		return u;
	}
}
0