結果

問題 No.827 総神童数
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-05 15:11:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,503 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-09-15 00:03:33
合計ジャッジ時間 26,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 1,503 ms
88,064 KB
testcase_10 AC 486 ms
34,560 KB
testcase_11 AC 49 ms
11,776 KB
testcase_12 AC 211 ms
22,656 KB
testcase_13 AC 1,178 ms
74,624 KB
testcase_14 AC 69 ms
13,184 KB
testcase_15 AC 432 ms
36,096 KB
testcase_16 AC 1,173 ms
59,008 KB
testcase_17 AC 1,417 ms
70,656 KB
testcase_18 AC 557 ms
41,856 KB
testcase_19 AC 1,378 ms
63,164 KB
testcase_20 AC 994 ms
47,868 KB
testcase_21 AC 710 ms
37,680 KB
testcase_22 AC 1,100 ms
52,704 KB
testcase_23 AC 37 ms
11,008 KB
testcase_24 AC 1,215 ms
55,308 KB
testcase_25 AC 915 ms
44,740 KB
testcase_26 AC 1,227 ms
55,520 KB
testcase_27 AC 794 ms
40,536 KB
testcase_28 AC 788 ms
40,208 KB
testcase_29 AC 624 ms
34,648 KB
testcase_30 AC 192 ms
18,008 KB
testcase_31 AC 480 ms
29,176 KB
testcase_32 AC 451 ms
28,664 KB
testcase_33 AC 1,344 ms
59,768 KB
testcase_34 AC 1,231 ms
56,436 KB
testcase_35 AC 490 ms
29,464 KB
testcase_36 AC 719 ms
37,304 KB
testcase_37 AC 914 ms
44,684 KB
testcase_38 AC 1,323 ms
59,468 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.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

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
facN = comb.fact[N]
inv = comb.inv
for i in range(N):
    ans += facN * inv[depth[i] + 1]
    ans %= MOD

print(ans)
0