結果

問題 No.827 総神童数
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-05 15:13:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,466 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 67,392 KB
最終ジャッジ日時 2024-09-15 00:04:29
合計ジャッジ時間 26,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 1,411 ms
67,392 KB
testcase_10 AC 469 ms
30,764 KB
testcase_11 AC 49 ms
11,520 KB
testcase_12 AC 209 ms
19,556 KB
testcase_13 AC 1,131 ms
56,372 KB
testcase_14 AC 70 ms
12,416 KB
testcase_15 AC 435 ms
28,872 KB
testcase_16 AC 1,135 ms
56,736 KB
testcase_17 AC 1,349 ms
64,688 KB
testcase_18 AC 569 ms
34,604 KB
testcase_19 AC 1,466 ms
63,156 KB
testcase_20 AC 1,046 ms
47,708 KB
testcase_21 AC 738 ms
37,540 KB
testcase_22 AC 1,164 ms
52,564 KB
testcase_23 AC 37 ms
11,136 KB
testcase_24 AC 1,275 ms
55,164 KB
testcase_25 AC 957 ms
44,852 KB
testcase_26 AC 1,283 ms
55,380 KB
testcase_27 AC 834 ms
40,524 KB
testcase_28 AC 815 ms
40,068 KB
testcase_29 AC 652 ms
34,632 KB
testcase_30 AC 206 ms
17,868 KB
testcase_31 AC 501 ms
28,912 KB
testcase_32 AC 476 ms
28,528 KB
testcase_33 AC 1,408 ms
59,756 KB
testcase_34 AC 1,276 ms
56,308 KB
testcase_35 AC 499 ms
29,328 KB
testcase_36 AC 739 ms
37,296 KB
testcase_37 AC 952 ms
44,552 KB
testcase_38 AC 1,395 ms
59,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

st = deque([(0, -1, 0)])
while st:
    now, pr, d = st.pop()
    depth[now] = d
    for to in edges[now]:
        if to == pr:
            continue
        st.append((to, now, d + 1))

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