結果

問題 No.827 総神童数
ユーザー rookzenorookzeno
提出日時 2019-05-24 21:01:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 102,348 KB
最終ジャッジ日時 2024-09-17 10:18:48
合計ジャッジ時間 13,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,676 KB
testcase_01 AC 40 ms
53,316 KB
testcase_02 AC 41 ms
54,248 KB
testcase_03 AC 42 ms
53,740 KB
testcase_04 AC 41 ms
54,156 KB
testcase_05 AC 41 ms
55,400 KB
testcase_06 AC 42 ms
54,372 KB
testcase_07 AC 42 ms
54,716 KB
testcase_08 AC 40 ms
54,248 KB
testcase_09 AC 495 ms
99,980 KB
testcase_10 AC 229 ms
84,960 KB
testcase_11 AC 87 ms
76,820 KB
testcase_12 AC 145 ms
80,420 KB
testcase_13 AC 407 ms
95,004 KB
testcase_14 AC 96 ms
78,008 KB
testcase_15 AC 208 ms
84,344 KB
testcase_16 AC 422 ms
97,016 KB
testcase_17 AC 484 ms
100,160 KB
testcase_18 AC 248 ms
86,904 KB
testcase_19 AC 622 ms
102,348 KB
testcase_20 AC 481 ms
95,484 KB
testcase_21 AC 361 ms
90,236 KB
testcase_22 AC 506 ms
96,984 KB
testcase_23 AC 84 ms
77,416 KB
testcase_24 AC 561 ms
99,396 KB
testcase_25 AC 429 ms
94,264 KB
testcase_26 AC 566 ms
99,344 KB
testcase_27 AC 382 ms
91,940 KB
testcase_28 AC 376 ms
91,540 KB
testcase_29 AC 314 ms
89,068 KB
testcase_30 AC 149 ms
80,564 KB
testcase_31 AC 259 ms
86,204 KB
testcase_32 AC 248 ms
85,400 KB
testcase_33 AC 585 ms
100,980 KB
testcase_34 AC 547 ms
99,132 KB
testcase_35 AC 260 ms
85,964 KB
testcase_36 AC 352 ms
90,016 KB
testcase_37 AC 433 ms
94,112 KB
testcase_38 AC 593 ms
101,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
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
        q.append([i,y+1,x])
q = deque()
q.append([0,0,-1])
while q:
    x,y,z = q.popleft()
    dfs(x,y,z)
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