結果

問題 No.827 総神童数
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:04:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 695 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-07-03 11:23:36
合計ジャッジ時間 37,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 TLE -
testcase_10 AC 718 ms
33,152 KB
testcase_11 AC 60 ms
11,904 KB
testcase_12 AC 317 ms
22,016 KB
testcase_13 AC 1,688 ms
69,888 KB
testcase_14 AC 90 ms
13,184 KB
testcase_15 AC 653 ms
34,292 KB
testcase_16 AC 1,706 ms
56,704 KB
testcase_17 TLE -
testcase_18 AC 846 ms
39,804 KB
testcase_19 TLE -
testcase_20 AC 1,442 ms
36,864 KB
testcase_21 AC 1,042 ms
29,824 KB
testcase_22 AC 1,622 ms
40,576 KB
testcase_23 AC 40 ms
11,008 KB
testcase_24 AC 1,751 ms
41,856 KB
testcase_25 AC 1,329 ms
34,688 KB
testcase_26 AC 1,776 ms
42,112 KB
testcase_27 AC 1,180 ms
31,744 KB
testcase_28 AC 1,151 ms
31,488 KB
testcase_29 AC 920 ms
27,520 KB
testcase_30 AC 292 ms
16,000 KB
testcase_31 AC 706 ms
23,680 KB
testcase_32 AC 687 ms
23,296 KB
testcase_33 AC 1,938 ms
45,184 KB
testcase_34 AC 1,805 ms
43,136 KB
testcase_35 AC 714 ms
24,064 KB
testcase_36 AC 1,034 ms
29,312 KB
testcase_37 AC 1,312 ms
34,560 KB
testcase_38 AC 1,913 ms
45,312 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