結果

問題 No.827 総神童数
ユーザー rookzenorookzeno
提出日時 2019-05-24 20:57:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 879 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 338,884 KB
最終ジャッジ日時 2024-09-17 10:18:12
合計ジャッジ時間 13,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,036 KB
testcase_01 AC 32 ms
53,484 KB
testcase_02 AC 31 ms
52,500 KB
testcase_03 AC 32 ms
53,008 KB
testcase_04 AC 32 ms
53,024 KB
testcase_05 AC 32 ms
53,980 KB
testcase_06 AC 33 ms
53,788 KB
testcase_07 AC 32 ms
52,812 KB
testcase_08 AC 31 ms
52,888 KB
testcase_09 AC 857 ms
338,884 KB
testcase_10 AC 301 ms
137,932 KB
testcase_11 AC 78 ms
78,716 KB
testcase_12 AC 162 ms
108,224 KB
testcase_13 AC 634 ms
272,600 KB
testcase_14 AC 89 ms
84,192 KB
testcase_15 AC 340 ms
154,852 KB
testcase_16 AC 653 ms
228,380 KB
testcase_17 AC 879 ms
281,984 KB
testcase_18 AC 443 ms
174,492 KB
testcase_19 AC 597 ms
100,644 KB
testcase_20 AC 397 ms
95,036 KB
testcase_21 AC 302 ms
89,836 KB
testcase_22 AC 442 ms
96,264 KB
testcase_23 AC 64 ms
72,972 KB
testcase_24 AC 488 ms
97,720 KB
testcase_25 AC 378 ms
92,928 KB
testcase_26 AC 476 ms
98,132 KB
testcase_27 AC 332 ms
91,128 KB
testcase_28 AC 324 ms
91,564 KB
testcase_29 AC 256 ms
87,908 KB
testcase_30 AC 127 ms
80,192 KB
testcase_31 AC 217 ms
85,568 KB
testcase_32 AC 216 ms
85,264 KB
testcase_33 AC 497 ms
100,016 KB
testcase_34 AC 471 ms
98,248 KB
testcase_35 AC 278 ms
85,796 KB
testcase_36 AC 305 ms
89,344 KB
testcase_37 AC 365 ms
92,792 KB
testcase_38 AC 524 ms
99,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(20000000)
#input = sys.stdin.readline
n = int(input())
g = [[] for i in range(n)]
for i in range(n-1):
    u,v = map(int,input().split())
    u-=1;v-=1
    g[u].append(v)
    g[v].append(u)
hu = [0]*n
def dfs(x,y,z):
    hu[x] =y
    for i in g[x]:
        if i == z:
            continue
        dfs(i,y+1,x)
dfs(0,0,-1)
bi = 1
mod = 10**9+7
for i in range(1,n+1):
    bi*=i
    bi%=mod
ans = 0
for i in hu:
    ans+= bi*pow(i+1,mod-2,mod)
    ans %= mod
print(ans)
0