結果

問題 No.827 総神童数
ユーザー hedwig100hedwig100
提出日時 2020-04-21 22:00:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 809 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,044 KB
最終ジャッジ日時 2024-10-09 12:42:52
合計ジャッジ時間 15,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 42 ms
54,400 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 40 ms
53,760 KB
testcase_09 AC 710 ms
112,044 KB
testcase_10 AC 249 ms
86,352 KB
testcase_11 AC 86 ms
77,056 KB
testcase_12 AC 147 ms
80,512 KB
testcase_13 AC 554 ms
102,528 KB
testcase_14 AC 93 ms
77,544 KB
testcase_15 AC 237 ms
85,088 KB
testcase_16 AC 582 ms
103,756 KB
testcase_17 AC 691 ms
109,568 KB
testcase_18 AC 287 ms
88,448 KB
testcase_19 AC 809 ms
110,684 KB
testcase_20 AC 536 ms
99,200 KB
testcase_21 AC 392 ms
92,356 KB
testcase_22 AC 628 ms
102,272 KB
testcase_23 AC 81 ms
74,240 KB
testcase_24 AC 709 ms
106,624 KB
testcase_25 AC 493 ms
97,536 KB
testcase_26 AC 699 ms
106,240 KB
testcase_27 AC 439 ms
94,720 KB
testcase_28 AC 431 ms
94,208 KB
testcase_29 AC 356 ms
89,984 KB
testcase_30 AC 155 ms
80,620 KB
testcase_31 AC 292 ms
86,400 KB
testcase_32 AC 287 ms
86,016 KB
testcase_33 AC 772 ms
110,336 KB
testcase_34 AC 713 ms
107,484 KB
testcase_35 AC 300 ms
86,144 KB
testcase_36 AC 407 ms
91,748 KB
testcase_37 AC 504 ms
97,664 KB
testcase_38 AC 763 ms
110,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  collections import deque
from math import factorial

def main():
    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)
    
    stack = [(0,-1)]
    ancestors = [0] * n
    while stack:
        v,p = stack.pop()
        for e in G[v]:
            if e == p:
                continue
            ancestors[e] = ancestors[v] + 1
            stack.append((e,v))
    
    fact = factorial(n)%MOD
    
    ans = 0
    for d in ancestors:
        ans += fact * pow(d + 1,MOD - 2,MOD) % MOD
        ans %= MOD
    
    print(ans)
  
if __name__=='__main__':
    main()
0