結果

問題 No.827 総神童数
ユーザー AEnAEn
提出日時 2022-11-20 23:19:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 718 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-09-21 19:55:23
合計ジャッジ時間 44,641 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 TLE -
testcase_10 AC 829 ms
39,808 KB
testcase_11 AC 65 ms
12,032 KB
testcase_12 AC 357 ms
24,832 KB
testcase_13 AC 1,936 ms
85,760 KB
testcase_14 AC 100 ms
13,568 KB
testcase_15 AC 754 ms
40,572 KB
testcase_16 AC 1,975 ms
70,784 KB
testcase_17 TLE -
testcase_18 AC 991 ms
47,740 KB
testcase_19 TLE -
testcase_20 AC 1,687 ms
46,720 KB
testcase_21 AC 1,226 ms
37,120 KB
testcase_22 AC 1,885 ms
51,712 KB
testcase_23 AC 43 ms
11,008 KB
testcase_24 TLE -
testcase_25 AC 1,531 ms
43,904 KB
testcase_26 TLE -
testcase_27 AC 1,376 ms
39,936 KB
testcase_28 AC 1,345 ms
39,552 KB
testcase_29 AC 1,064 ms
33,920 KB
testcase_30 AC 329 ms
17,792 KB
testcase_31 AC 828 ms
28,800 KB
testcase_32 AC 794 ms
28,160 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 818 ms
29,056 KB
testcase_36 AC 1,194 ms
36,608 KB
testcase_37 AC 1,517 ms
43,648 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)

mod = 10**9+7
N = int(input())
G = [list() for _ 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)

fac = [0]*(N+1)
inv = [0]*(N+1)
fac[0]=1;inv[0]=1
for i in range(1,N+1):
    fac[i] = (fac[i-1]*i)%mod
    inv[i] = (inv[i-1]*pow(i,mod-2,mod))%mod

def ncr(r):
    return (fac[N]*inv[r]*inv[N-r])%mod

res = (N*fac[N-1])%mod
depth = [0]*N
depth[0] = 1
def dfs(v,p):
    for nex in G[v]:
        if nex==p:
            continue
        depth[nex] = depth[v]+1
        global res
        res += ncr(depth[nex])*fac[depth[nex]-1]*fac[N-depth[nex]]
        res %= mod
        dfs(nex,v)

dfs(0,-1)
print(res)
0