結果

問題 No.827 総神童数
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:08:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,720 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-07-03 11:25:24
合計ジャッジ時間 25,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 1,498 ms
88,064 KB
testcase_10 AC 480 ms
34,816 KB
testcase_11 AC 46 ms
11,904 KB
testcase_12 AC 207 ms
22,784 KB
testcase_13 AC 1,185 ms
74,752 KB
testcase_14 AC 69 ms
13,312 KB
testcase_15 AC 451 ms
36,084 KB
testcase_16 AC 1,175 ms
59,648 KB
testcase_17 AC 1,720 ms
71,296 KB
testcase_18 AC 582 ms
41,848 KB
testcase_19 AC 1,385 ms
48,128 KB
testcase_20 AC 957 ms
36,736 KB
testcase_21 AC 695 ms
29,824 KB
testcase_22 AC 1,089 ms
40,704 KB
testcase_23 AC 34 ms
11,008 KB
testcase_24 AC 1,201 ms
42,112 KB
testcase_25 AC 872 ms
34,688 KB
testcase_26 AC 1,162 ms
42,112 KB
testcase_27 AC 769 ms
31,872 KB
testcase_28 AC 754 ms
31,488 KB
testcase_29 AC 601 ms
27,392 KB
testcase_30 AC 196 ms
16,000 KB
testcase_31 AC 456 ms
23,808 KB
testcase_32 AC 451 ms
23,168 KB
testcase_33 AC 1,306 ms
45,312 KB
testcase_34 AC 1,164 ms
43,264 KB
testcase_35 AC 469 ms
23,936 KB
testcase_36 AC 671 ms
29,312 KB
testcase_37 AC 860 ms
34,560 KB
testcase_38 AC 1,268 ms
45,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input=sys.stdin.readline


def main():
    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)
    return


if __name__ == "__main__":
    main()

0