結果

問題 No.827 総神童数
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-07 21:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 127,040 KB
最終ジャッジ日時 2024-11-14 01:58:14
合計ジャッジ時間 9,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,448 KB
testcase_01 AC 40 ms
54,304 KB
testcase_02 AC 41 ms
54,468 KB
testcase_03 AC 40 ms
54,188 KB
testcase_04 AC 40 ms
53,692 KB
testcase_05 AC 40 ms
55,336 KB
testcase_06 AC 40 ms
54,680 KB
testcase_07 AC 41 ms
54,424 KB
testcase_08 AC 40 ms
54,248 KB
testcase_09 AC 419 ms
127,040 KB
testcase_10 AC 163 ms
89,788 KB
testcase_11 AC 64 ms
70,184 KB
testcase_12 AC 112 ms
83,512 KB
testcase_13 AC 343 ms
111,884 KB
testcase_14 AC 68 ms
71,440 KB
testcase_15 AC 161 ms
91,184 KB
testcase_16 AC 300 ms
108,252 KB
testcase_17 AC 356 ms
116,760 KB
testcase_18 AC 196 ms
97,404 KB
testcase_19 AC 319 ms
98,408 KB
testcase_20 AC 219 ms
91,232 KB
testcase_21 AC 175 ms
88,776 KB
testcase_22 AC 252 ms
94,984 KB
testcase_23 AC 59 ms
67,376 KB
testcase_24 AC 298 ms
97,308 KB
testcase_25 AC 213 ms
90,200 KB
testcase_26 AC 305 ms
97,372 KB
testcase_27 AC 190 ms
89,360 KB
testcase_28 AC 189 ms
89,480 KB
testcase_29 AC 164 ms
87,496 KB
testcase_30 AC 89 ms
79,636 KB
testcase_31 AC 126 ms
82,496 KB
testcase_32 AC 125 ms
82,716 KB
testcase_33 AC 304 ms
98,100 KB
testcase_34 AC 302 ms
97,144 KB
testcase_35 AC 130 ms
82,628 KB
testcase_36 AC 183 ms
88,996 KB
testcase_37 AC 215 ms
90,500 KB
testcase_38 AC 305 ms
98,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10 ** 9 + 7

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

dist = [-1] * N
que = [0]
dist[0] = 1
while que:
    s = que.pop()
    for t in G[s]:
        if dist[t] == -1:
            dist[t] = dist[s] + 1
            que.append(t)

fact = 1
for i in range(1, N + 1):
    fact = fact * i % mod

ans = 0
for d, cnt in Counter(dist).items():
    p = pow(d, mod - 2, mod) * fact % mod
    ans += p * cnt
    ans %= mod

print(ans)
0