結果

問題 No.827 総神童数
ユーザー rookzenorookzeno
提出日時 2019-05-24 20:56:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,949 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-09-17 10:17:08
合計ジャッジ時間 32,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 1,949 ms
86,784 KB
testcase_10 AC 636 ms
34,304 KB
testcase_11 AC 56 ms
12,032 KB
testcase_12 AC 275 ms
22,656 KB
testcase_13 AC 1,514 ms
73,600 KB
testcase_14 AC 78 ms
13,312 KB
testcase_15 AC 567 ms
35,700 KB
testcase_16 AC 1,522 ms
58,368 KB
testcase_17 AC 1,786 ms
70,144 KB
testcase_18 AC 726 ms
41,340 KB
testcase_19 AC 1,752 ms
46,848 KB
testcase_20 AC 1,271 ms
35,712 KB
testcase_21 AC 910 ms
28,928 KB
testcase_22 AC 1,422 ms
39,552 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 1,567 ms
40,704 KB
testcase_25 AC 1,188 ms
33,664 KB
testcase_26 AC 1,541 ms
40,960 KB
testcase_27 AC 1,012 ms
31,104 KB
testcase_28 AC 1,002 ms
30,720 KB
testcase_29 AC 801 ms
26,624 KB
testcase_30 AC 257 ms
15,872 KB
testcase_31 AC 623 ms
23,296 KB
testcase_32 AC 604 ms
22,784 KB
testcase_33 AC 1,699 ms
44,032 KB
testcase_34 AC 1,562 ms
41,856 KB
testcase_35 AC 641 ms
23,424 KB
testcase_36 AC 982 ms
28,672 KB
testcase_37 AC 1,167 ms
33,536 KB
testcase_38 AC 1,706 ms
43,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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
        dfs(i,y+1,x)
dfs(0,0,-1)
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