結果

問題 No.827 総神童数
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-05 15:08:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,412 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,792 KB
最終ジャッジ日時 2024-09-15 00:02:12
合計ジャッジ時間 25,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 1,474 ms
70,792 KB
testcase_20 AC 1,054 ms
53,324 KB
testcase_21 AC 761 ms
41,720 KB
testcase_22 AC 1,167 ms
58,924 KB
testcase_23 AC 37 ms
11,008 KB
testcase_24 AC 1,275 ms
61,908 KB
testcase_25 AC 952 ms
49,940 KB
testcase_26 AC 1,288 ms
62,252 KB
testcase_27 AC 847 ms
45,348 KB
testcase_28 AC 819 ms
44,644 KB
testcase_29 AC 663 ms
38,176 KB
testcase_30 AC 210 ms
19,104 KB
testcase_31 AC 519 ms
32,072 KB
testcase_32 AC 493 ms
31,180 KB
testcase_33 AC 1,412 ms
67,268 KB
testcase_34 AC 1,279 ms
63,184 KB
testcase_35 AC 511 ms
32,236 KB
testcase_36 AC 759 ms
41,224 KB
testcase_37 AC 953 ms
50,012 KB
testcase_38 AC 1,379 ms
66,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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