結果

問題 No.827 総神童数
ユーザー titiatitia
提出日時 2019-05-03 23:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 180,912 KB
最終ジャッジ日時 2024-12-31 20:25:06
合計ジャッジ時間 15,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
91,780 KB
testcase_01 AC 209 ms
91,692 KB
testcase_02 AC 211 ms
91,972 KB
testcase_03 AC 208 ms
91,864 KB
testcase_04 AC 211 ms
92,076 KB
testcase_05 AC 211 ms
92,144 KB
testcase_06 AC 210 ms
93,464 KB
testcase_07 AC 207 ms
92,716 KB
testcase_08 AC 209 ms
92,420 KB
testcase_09 AC 567 ms
180,912 KB
testcase_10 AC 333 ms
129,776 KB
testcase_11 AC 239 ms
105,568 KB
testcase_12 AC 275 ms
115,608 KB
testcase_13 AC 476 ms
166,576 KB
testcase_14 AC 244 ms
106,412 KB
testcase_15 AC 319 ms
129,140 KB
testcase_16 AC 465 ms
155,276 KB
testcase_17 AC 487 ms
167,752 KB
testcase_18 AC 342 ms
136,452 KB
testcase_19 AC 475 ms
149,124 KB
testcase_20 AC 405 ms
137,848 KB
testcase_21 AC 371 ms
128,868 KB
testcase_22 AC 421 ms
140,580 KB
testcase_23 AC 230 ms
101,336 KB
testcase_24 AC 476 ms
144,436 KB
testcase_25 AC 390 ms
133,980 KB
testcase_26 AC 464 ms
144,648 KB
testcase_27 AC 375 ms
131,376 KB
testcase_28 AC 374 ms
130,776 KB
testcase_29 AC 352 ms
125,292 KB
testcase_30 AC 270 ms
111,384 KB
testcase_31 AC 324 ms
120,324 KB
testcase_32 AC 321 ms
120,576 KB
testcase_33 AC 499 ms
148,252 KB
testcase_34 AC 486 ms
144,392 KB
testcase_35 AC 325 ms
119,644 KB
testcase_36 AC 359 ms
128,168 KB
testcase_37 AC 420 ms
134,300 KB
testcase_38 AC 487 ms
145,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N=int(input())
EDGE=[list(map(int,input().split())) for i in range(N-1)]
mod=10**9+7

E=[[] for i in range(N+1)]

for x,y in EDGE:
    E[x].append(y)
    E[y].append(x)

H=[0]*(N+1)

from collections import deque

QUE=deque([[1,1]])

while QUE:
    x,h=QUE.pop()
    if H[x]!=0:
        continue
    H[x]=h
    for to in E[x]:
        if H[to]==0:
            QUE.append([to,h+1])


from collections import Counter
C=Counter(H[1:])

FACT=[1,1]
FACT_INV=[1,1]
for i in range(2,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)
    FACT_INV.append(FACT_INV[-1]*pow(i,mod-2,mod)%mod)
    
def Combi(N,K):
    return FACT[N]*FACT_INV[N-K]*FACT_INV[K]%mod

ANS=0
for c in C:
    ANS=(ANS+(Combi(N,c)*FACT[c-1]*FACT[N-c])*C[c]%mod)%mod

print(ANS)
0