結果

問題 No.827 総神童数
ユーザー AEnAEn
提出日時 2022-11-20 23:20:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,322 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 334,124 KB
最終ジャッジ日時 2024-09-21 19:55:55
合計ジャッジ時間 20,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,940 KB
testcase_01 AC 39 ms
53,388 KB
testcase_02 AC 41 ms
53,480 KB
testcase_03 AC 38 ms
53,204 KB
testcase_04 AC 39 ms
52,688 KB
testcase_05 AC 39 ms
53,160 KB
testcase_06 AC 39 ms
53,280 KB
testcase_07 AC 41 ms
52,884 KB
testcase_08 AC 40 ms
54,328 KB
testcase_09 AC 1,322 ms
334,124 KB
testcase_10 AC 505 ms
147,288 KB
testcase_11 AC 98 ms
78,652 KB
testcase_12 AC 248 ms
106,796 KB
testcase_13 AC 1,051 ms
280,208 KB
testcase_14 AC 116 ms
82,672 KB
testcase_15 AC 514 ms
144,160 KB
testcase_16 AC 1,115 ms
230,724 KB
testcase_17 AC 1,307 ms
277,876 KB
testcase_18 AC 651 ms
166,696 KB
testcase_19 AC 1,014 ms
104,220 KB
testcase_20 AC 613 ms
97,324 KB
testcase_21 AC 455 ms
91,852 KB
testcase_22 AC 659 ms
98,384 KB
testcase_23 AC 85 ms
77,428 KB
testcase_24 AC 730 ms
100,596 KB
testcase_25 AC 561 ms
95,724 KB
testcase_26 AC 730 ms
101,076 KB
testcase_27 AC 507 ms
93,824 KB
testcase_28 AC 489 ms
93,356 KB
testcase_29 AC 400 ms
90,208 KB
testcase_30 AC 173 ms
80,840 KB
testcase_31 AC 325 ms
87,268 KB
testcase_32 AC 327 ms
86,992 KB
testcase_33 AC 794 ms
103,220 KB
testcase_34 AC 736 ms
100,932 KB
testcase_35 AC 441 ms
87,252 KB
testcase_36 AC 453 ms
91,736 KB
testcase_37 AC 574 ms
95,932 KB
testcase_38 AC 789 ms
102,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)
import pypyjit
pypyjit.set_param("max_unroll_recursion=-1")

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]])%mod
        res %= mod
        dfs(nex,v)

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