結果

問題 No.827 総神童数
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:03:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 642 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-07-03 11:24:31
合計ジャッジ時間 28,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 1,923 ms
48,256 KB
testcase_20 AC 1,343 ms
36,736 KB
testcase_21 AC 983 ms
29,824 KB
testcase_22 AC 1,501 ms
40,704 KB
testcase_23 AC 38 ms
11,008 KB
testcase_24 AC 1,615 ms
42,112 KB
testcase_25 AC 1,215 ms
34,688 KB
testcase_26 AC 1,659 ms
42,112 KB
testcase_27 AC 1,090 ms
31,872 KB
testcase_28 AC 1,064 ms
31,616 KB
testcase_29 AC 826 ms
27,520 KB
testcase_30 AC 254 ms
16,000 KB
testcase_31 AC 646 ms
23,808 KB
testcase_32 AC 623 ms
23,296 KB
testcase_33 AC 1,832 ms
45,312 KB
testcase_34 AC 1,676 ms
43,136 KB
testcase_35 AC 698 ms
24,064 KB
testcase_36 AC 926 ms
29,440 KB
testcase_37 AC 1,208 ms
34,688 KB
testcase_38 AC 1,765 ms
45,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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