結果
問題 | No.827 総神童数 |
ユーザー | tenten |
提出日時 | 2023-03-15 11:27:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,619 ms / 2,000 ms |
コード長 | 2,817 bytes |
コンパイル時間 | 3,415 ms |
コンパイル使用メモリ | 96,156 KB |
実行使用メモリ | 106,008 KB |
最終ジャッジ日時 | 2024-09-18 08:39:20 |
合計ジャッジ時間 | 26,823 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,204 KB |
testcase_01 | AC | 52 ms
36,972 KB |
testcase_02 | AC | 53 ms
36,832 KB |
testcase_03 | AC | 53 ms
37,268 KB |
testcase_04 | AC | 54 ms
36,996 KB |
testcase_05 | AC | 53 ms
37,076 KB |
testcase_06 | AC | 54 ms
36,848 KB |
testcase_07 | AC | 53 ms
37,168 KB |
testcase_08 | AC | 53 ms
36,944 KB |
testcase_09 | AC | 1,619 ms
106,008 KB |
testcase_10 | AC | 512 ms
67,980 KB |
testcase_11 | AC | 138 ms
40,616 KB |
testcase_12 | AC | 332 ms
56,840 KB |
testcase_13 | AC | 1,211 ms
105,572 KB |
testcase_14 | AC | 168 ms
43,068 KB |
testcase_15 | AC | 508 ms
69,028 KB |
testcase_16 | AC | 927 ms
96,884 KB |
testcase_17 | AC | 1,043 ms
104,428 KB |
testcase_18 | AC | 574 ms
77,568 KB |
testcase_19 | AC | 898 ms
88,588 KB |
testcase_20 | AC | 757 ms
68,484 KB |
testcase_21 | AC | 570 ms
62,436 KB |
testcase_22 | AC | 809 ms
73,164 KB |
testcase_23 | AC | 101 ms
38,872 KB |
testcase_24 | AC | 838 ms
75,328 KB |
testcase_25 | AC | 693 ms
66,564 KB |
testcase_26 | AC | 855 ms
75,276 KB |
testcase_27 | AC | 641 ms
63,980 KB |
testcase_28 | AC | 606 ms
63,984 KB |
testcase_29 | AC | 520 ms
60,936 KB |
testcase_30 | AC | 238 ms
48,260 KB |
testcase_31 | AC | 430 ms
55,668 KB |
testcase_32 | AC | 409 ms
55,016 KB |
testcase_33 | AC | 887 ms
77,028 KB |
testcase_34 | AC | 856 ms
75,204 KB |
testcase_35 | AC | 443 ms
55,744 KB |
testcase_36 | AC | 582 ms
62,856 KB |
testcase_37 | AC | 743 ms
66,604 KB |
testcase_38 | AC | 922 ms
81,652 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); static HashMap<Integer, Integer> counts = new HashMap<>(); static final int MOD = 1000000007; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; graph.get(a).add(b); graph.get(b).add(a); } search(0, 0, 0); long ans = 0; for (int x : counts.keySet()) { ans += pow(x + 1, MOD - 2) * counts.get(x) % MOD; ans %= MOD; } ans *= fact(n); ans %= MOD; System.out.println(ans); } static void search(int idx, int p, int d) { counts.put(d, counts.getOrDefault(d, 0) + 1); for (int x : graph.get(idx)) { if (x != p) { search(x, idx, d + 1); } } } static long pow(long x, int p) { if (p == 0) { return 1; } else if (p % 2 == 0) { return pow(x * x % MOD, p / 2); } else { return pow(x, p - 1) * x % MOD; } } static long fact(int x) { long ans = 1; for (int i = 1; i <= x; i++) { ans *= i; ans %= MOD; } return ans; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }