結果

問題 No.827 総神童数
ユーザー titiatitia
提出日時 2019-05-03 23:45:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 774 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 104,924 KB
最終ジャッジ日時 2024-06-10 07:13:39
合計ジャッジ時間 52,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 848 ms
26,496 KB
testcase_01 AC 862 ms
26,496 KB
testcase_02 AC 860 ms
26,752 KB
testcase_03 AC 853 ms
26,624 KB
testcase_04 AC 876 ms
26,496 KB
testcase_05 AC 854 ms
26,496 KB
testcase_06 AC 861 ms
26,624 KB
testcase_07 AC 854 ms
26,496 KB
testcase_08 AC 862 ms
26,752 KB
testcase_09 TLE -
testcase_10 AC 1,189 ms
54,984 KB
testcase_11 AC 884 ms
27,904 KB
testcase_12 AC 1,037 ms
38,084 KB
testcase_13 AC 1,812 ms
86,448 KB
testcase_14 AC 900 ms
28,976 KB
testcase_15 AC 1,184 ms
52,604 KB
testcase_16 AC 1,739 ms
87,708 KB
testcase_17 AC 1,925 ms
97,052 KB
testcase_18 AC 1,264 ms
58,752 KB
testcase_19 AC 1,801 ms
90,060 KB
testcase_20 AC 1,497 ms
71,836 KB
testcase_21 AC 1,340 ms
59,876 KB
testcase_22 AC 1,590 ms
75,912 KB
testcase_23 AC 885 ms
26,880 KB
testcase_24 AC 1,635 ms
81,372 KB
testcase_25 AC 1,443 ms
68,168 KB
testcase_26 AC 1,687 ms
81,456 KB
testcase_27 AC 1,368 ms
63,264 KB
testcase_28 AC 1,347 ms
62,708 KB
testcase_29 AC 1,226 ms
55,124 KB
testcase_30 AC 974 ms
35,208 KB
testcase_31 AC 1,130 ms
48,512 KB
testcase_32 AC 1,150 ms
47,888 KB
testcase_33 AC 1,824 ms
86,720 KB
testcase_34 AC 1,684 ms
82,520 KB
testcase_35 AC 1,134 ms
48,864 KB
testcase_36 AC 1,274 ms
58,856 KB
testcase_37 AC 1,456 ms
68,944 KB
testcase_38 AC 1,842 ms
85,868 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