結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
91,648 KB
testcase_01 AC 188 ms
92,416 KB
testcase_02 AC 195 ms
91,648 KB
testcase_03 AC 188 ms
91,648 KB
testcase_04 AC 189 ms
91,884 KB
testcase_05 AC 189 ms
91,392 KB
testcase_06 AC 191 ms
91,520 KB
testcase_07 AC 191 ms
91,520 KB
testcase_08 AC 187 ms
91,648 KB
testcase_09 AC 505 ms
180,728 KB
testcase_10 AC 300 ms
129,912 KB
testcase_11 AC 227 ms
105,604 KB
testcase_12 AC 248 ms
115,712 KB
testcase_13 AC 426 ms
166,528 KB
testcase_14 AC 218 ms
106,752 KB
testcase_15 AC 289 ms
129,408 KB
testcase_16 AC 422 ms
155,520 KB
testcase_17 AC 433 ms
167,808 KB
testcase_18 AC 313 ms
136,832 KB
testcase_19 AC 428 ms
149,632 KB
testcase_20 AC 358 ms
137,728 KB
testcase_21 AC 321 ms
128,896 KB
testcase_22 AC 376 ms
141,024 KB
testcase_23 AC 206 ms
100,864 KB
testcase_24 AC 419 ms
144,512 KB
testcase_25 AC 348 ms
134,240 KB
testcase_26 AC 408 ms
144,512 KB
testcase_27 AC 334 ms
131,520 KB
testcase_28 AC 338 ms
131,120 KB
testcase_29 AC 316 ms
125,040 KB
testcase_30 AC 242 ms
111,104 KB
testcase_31 AC 282 ms
120,252 KB
testcase_32 AC 288 ms
120,832 KB
testcase_33 AC 424 ms
148,096 KB
testcase_34 AC 409 ms
144,640 KB
testcase_35 AC 286 ms
120,064 KB
testcase_36 AC 334 ms
128,256 KB
testcase_37 AC 367 ms
134,464 KB
testcase_38 AC 428 ms
146,432 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