結果

問題 No.827 総神童数
ユーザー kohei2019kohei2019
提出日時 2022-04-21 01:04:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 1,487 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 144,512 KB
最終ジャッジ日時 2024-06-12 04:59:02
合計ジャッジ時間 12,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 49 ms
53,888 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
54,144 KB
testcase_07 AC 41 ms
54,144 KB
testcase_08 AC 42 ms
54,144 KB
testcase_09 AC 444 ms
144,512 KB
testcase_10 AC 200 ms
99,708 KB
testcase_11 AC 91 ms
77,400 KB
testcase_12 AC 132 ms
84,992 KB
testcase_13 AC 366 ms
128,888 KB
testcase_14 AC 96 ms
77,952 KB
testcase_15 AC 188 ms
96,364 KB
testcase_16 AC 379 ms
130,288 KB
testcase_17 AC 429 ms
138,336 KB
testcase_18 AC 220 ms
102,080 KB
testcase_19 AC 541 ms
131,184 KB
testcase_20 AC 416 ms
126,120 KB
testcase_21 AC 300 ms
111,360 KB
testcase_22 AC 434 ms
130,832 KB
testcase_23 AC 89 ms
77,056 KB
testcase_24 AC 498 ms
136,172 KB
testcase_25 AC 370 ms
122,168 KB
testcase_26 AC 502 ms
136,560 KB
testcase_27 AC 339 ms
115,724 KB
testcase_28 AC 331 ms
115,324 KB
testcase_29 AC 288 ms
107,476 KB
testcase_30 AC 143 ms
83,840 KB
testcase_31 AC 241 ms
100,736 KB
testcase_32 AC 219 ms
99,328 KB
testcase_33 AC 588 ms
140,160 KB
testcase_34 AC 489 ms
135,824 KB
testcase_35 AC 242 ms
100,864 KB
testcase_36 AC 301 ms
111,360 KB
testcase_37 AC 371 ms
121,984 KB
testcase_38 AC 518 ms
139,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
class NCK:
    '''
    最大値 :N
    mod
    '''
    def __init__(self,N,mod):
        self.mod = mod
        self.N = N
        self.factmod = [1,1]
        for i in range(2,self.N+1):
            self.factmod.append((self.factmod[-1]*i)%self.mod)

        self.inv = [0,1]
        for i in range(2, N + 1):
            self.inv.append((-self.inv[self.mod % i] * (self.mod // i)) % self.mod)

        self.invfact = [1,1]
        for i in range(2, N + 1):
            self.invfact.append((self.invfact[-1]*self.inv[i])%self.mod)

    def nCk(self,a,b):
        if a < b:
            return 0
        return ((self.factmod[a]*self.invfact[b]%self.mod)*self.invfact[a-b])%self.mod
    
    def invnCk(self,a,b):
        return ((self.factmod[a-b]*self.invfact[a]%self.mod)*self.factmod[b])%self.mod

N = int(input())
lsg = [[] for i in range(N)]
for i in range(N-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    lsg[a].append(b)
    lsg[b].append(a)
INF = float('INF')
cost = [INF]*(N)
used = [False]*(N)
cost[0] = 0
d = collections.deque([0])
while d:
    n = d.popleft()
    if used[n]:
        continue
    used[n] = True
    for j in lsg[n]:
        if used[j]:
            continue
        if cost[j] > cost[n]+1:
            cost[j] = cost[n]+1
            d.append(j)
mod = 10**9+7
nck = NCK(N+1, mod)
ans = 0
for i in range(N):
    dist = cost[i]
    ans += nck.nCk(N, dist+1)*nck.factmod[dist]*nck.factmod[N-dist-1]
    ans %= mod
print(ans)
0