結果

問題 No.827 総神童数
ユーザー convexineqconvexineq
提出日時 2021-04-03 13:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 107,832 KB
最終ジャッジ日時 2024-06-06 22:41:18
合計ジャッジ時間 9,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
66,276 KB
testcase_01 AC 57 ms
66,800 KB
testcase_02 AC 58 ms
66,336 KB
testcase_03 AC 51 ms
65,964 KB
testcase_04 AC 52 ms
66,608 KB
testcase_05 AC 52 ms
66,228 KB
testcase_06 AC 52 ms
66,308 KB
testcase_07 AC 51 ms
66,600 KB
testcase_08 AC 53 ms
66,084 KB
testcase_09 AC 302 ms
107,748 KB
testcase_10 AC 158 ms
92,180 KB
testcase_11 AC 86 ms
81,776 KB
testcase_12 AC 112 ms
85,572 KB
testcase_13 AC 259 ms
103,148 KB
testcase_14 AC 92 ms
84,168 KB
testcase_15 AC 146 ms
89,704 KB
testcase_16 AC 267 ms
103,500 KB
testcase_17 AC 290 ms
106,948 KB
testcase_18 AC 163 ms
92,844 KB
testcase_19 AC 380 ms
107,832 KB
testcase_20 AC 309 ms
100,700 KB
testcase_21 AC 233 ms
96,276 KB
testcase_22 AC 317 ms
103,616 KB
testcase_23 AC 86 ms
80,324 KB
testcase_24 AC 336 ms
104,644 KB
testcase_25 AC 273 ms
100,032 KB
testcase_26 AC 344 ms
104,688 KB
testcase_27 AC 253 ms
97,164 KB
testcase_28 AC 232 ms
96,952 KB
testcase_29 AC 202 ms
94,948 KB
testcase_30 AC 116 ms
85,636 KB
testcase_31 AC 179 ms
92,416 KB
testcase_32 AC 174 ms
92,144 KB
testcase_33 AC 373 ms
107,568 KB
testcase_34 AC 358 ms
104,380 KB
testcase_35 AC 179 ms
92,324 KB
testcase_36 AC 218 ms
96,120 KB
testcase_37 AC 283 ms
99,840 KB
testcase_38 AC 388 ms
107,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

SIZE=3*10**5+1; MOD=10**9+7 #998244353 #ここを変更する

inv = [0]*SIZE  # inv[j] = j^{-1} mod MOD
fac = [0]*SIZE  # fac[j] = j! mod MOD
finv = [0]*SIZE # finv[j] = (j!)^{-1} mod MOD
fac[0] = fac[1] = 1
finv[0] = finv[1] = 1
for i in range(2,SIZE):
    fac[i] = fac[i-1]*i%MOD
finv[-1] = pow(fac[-1],MOD-2,MOD)
for i in range(SIZE-1,0,-1):
    finv[i-1] = finv[i]*i%MOD
    inv[i] = finv[i]*fac[i-1]%MOD

def choose(n,r): # nCk mod MOD の計算
    if 0 <= r <= n:
        return (fac[n]*finv[r]%MOD)*finv[n-r]%MOD
    else:
        return 0


n = int(input())
g = [[] for _ in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
 
depth = [1]*n
st = [0]
parent = [-1]*n
while st:
    v = st.pop()
    for c in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v
            depth[c] = depth[v] + 1

ans = 0
for d in depth:
    ans += inv[d]
print(ans*fac[n]%MOD)
0