結果

問題 No.827 総神童数
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 329,344 KB
最終ジャッジ日時 2024-07-03 11:26:30
合計ジャッジ時間 15,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,592 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 997 ms
329,344 KB
testcase_10 AC 344 ms
132,696 KB
testcase_11 AC 88 ms
79,608 KB
testcase_12 AC 196 ms
106,496 KB
testcase_13 AC 752 ms
267,908 KB
testcase_14 AC 105 ms
82,632 KB
testcase_15 AC 426 ms
157,184 KB
testcase_16 AC 827 ms
231,556 KB
testcase_17 AC 984 ms
279,440 KB
testcase_18 AC 476 ms
158,144 KB
testcase_19 AC 616 ms
102,120 KB
testcase_20 AC 450 ms
95,736 KB
testcase_21 AC 333 ms
90,272 KB
testcase_22 AC 506 ms
97,532 KB
testcase_23 AC 73 ms
74,608 KB
testcase_24 AC 551 ms
98,868 KB
testcase_25 AC 412 ms
94,036 KB
testcase_26 AC 557 ms
99,668 KB
testcase_27 AC 376 ms
92,092 KB
testcase_28 AC 387 ms
91,856 KB
testcase_29 AC 309 ms
88,712 KB
testcase_30 AC 154 ms
80,368 KB
testcase_31 AC 257 ms
86,064 KB
testcase_32 AC 251 ms
86,024 KB
testcase_33 AC 589 ms
101,332 KB
testcase_34 AC 541 ms
99,424 KB
testcase_35 AC 317 ms
86,200 KB
testcase_36 AC 349 ms
90,112 KB
testcase_37 AC 415 ms
94,048 KB
testcase_38 AC 585 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N = int(input())
graph = [[] for i in range(N+1)]
for i in range(N-1):
    u, v = map(int, input().split())
    graph[u].append(v)
    graph[v].append(u)
visited = [False for i in range(N+1)]
distance = [1 for i in range(N+1)]


def dfs(S):
    visited[S] = True
    for node in graph[S]:
        if visited[node] == False:
            visited[node] = True
            distance[node] = distance[S]+1
            dfs(node)


dfs(1)
mod = 10**9+7
power = 1
for i in range(1, N+1):
    power *= i
    power %= mod


def rev(X, mod):
    return pow(X, mod-2, mod)


ans = 0
for i in range(1, N+1):
    ans += power*rev(distance[i],mod) % mod
print(ans % mod)
0