結果

問題 No.827 総神童数
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-05 15:08:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,598 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-09-15 00:02:45
合計ジャッジ時間 27,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 1,598 ms
87,808 KB
testcase_10 AC 529 ms
34,560 KB
testcase_11 AC 50 ms
11,904 KB
testcase_12 AC 227 ms
22,912 KB
testcase_13 AC 1,274 ms
74,752 KB
testcase_14 AC 72 ms
13,312 KB
testcase_15 AC 481 ms
35,828 KB
testcase_16 AC 1,242 ms
63,072 KB
testcase_17 AC 1,495 ms
72,492 KB
testcase_18 AC 606 ms
41,728 KB
testcase_19 AC 1,463 ms
70,660 KB
testcase_20 AC 1,024 ms
53,192 KB
testcase_21 AC 739 ms
41,844 KB
testcase_22 AC 1,146 ms
58,812 KB
testcase_23 AC 38 ms
10,880 KB
testcase_24 AC 1,251 ms
61,908 KB
testcase_25 AC 972 ms
49,804 KB
testcase_26 AC 1,278 ms
62,376 KB
testcase_27 AC 862 ms
45,216 KB
testcase_28 AC 849 ms
44,760 KB
testcase_29 AC 671 ms
38,048 KB
testcase_30 AC 207 ms
19,072 KB
testcase_31 AC 515 ms
32,076 KB
testcase_32 AC 486 ms
31,180 KB
testcase_33 AC 1,422 ms
67,124 KB
testcase_34 AC 1,283 ms
63,044 KB
testcase_35 AC 511 ms
32,168 KB
testcase_36 AC 744 ms
41,188 KB
testcase_37 AC 953 ms
49,748 KB
testcase_38 AC 1,384 ms
66,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)

class Combination:
    def __init__(self, size, mod=10**9 + 7):
        self.size = size + 2
        self.mod = mod
        self.fact = [1, 1] + [0] * size
        self.factInv = [1, 1] + [0] * size
        self.inv = [0, 1] + [0] * size

        for i in range(2, self.size):
            self.fact[i] = self.fact[i - 1] * i % self.mod
            self.inv[i] = -self.inv[self.mod % i] * (self.mod // i) % self.mod
            self.factInv[i] = self.factInv[i - 1] * self.inv[i] % self.mod

    def npr(self, n, r):
        if n < r or n < 0 or r < 0:
            return 0
        return self.fact[n] * self.factInv[n - r] % self.mod

    def ncr(self, n, r):
        if n < r or n < 0 or r < 0:
            return 0
        return self.fact[n] * (self.factInv[r] * self.factInv[n - r] % self.mod) % self.mod

    def factN(self, n):
        if n < 0:
            return 0
        return self.fact[n]

N = int(input())
MOD = 10**9 + 7
edges = [[] for _ in range(N)]

for _ in range(N - 1):
    fr, to = map(int, input().split())
    fr -= 1
    to -= 1
    edges[fr].append(to)
    edges[to].append(fr)

depth = [-1] * N

def dfs(now, parent, d):
    depth[now] = d
    for to in edges[now]:
        if to == parent:
            continue
        dfs(to, now, d + 1)

dfs(0, -1, 0)

comb = Combination(N + 10)
ans = 0
for i in range(N):
    ans += comb.factN(N) * comb.inv[depth[i] + 1]
    ans %= MOD

print(ans)
0