結果

問題 No.827 総神童数
ユーザー hedwig100hedwig100
提出日時 2020-04-21 21:59:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 815 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,088 KB
最終ジャッジ日時 2024-10-09 12:41:41
合計ジャッジ時間 42,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 TLE -
testcase_10 AC 704 ms
25,728 KB
testcase_11 AC 57 ms
11,520 KB
testcase_12 AC 302 ms
17,408 KB
testcase_13 AC 1,806 ms
44,528 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 637 ms
24,576 KB
testcase_16 AC 1,803 ms
44,908 KB
testcase_17 TLE -
testcase_18 AC 842 ms
28,416 KB
testcase_19 TLE -
testcase_20 AC 1,627 ms
37,244 KB
testcase_21 AC 1,126 ms
30,208 KB
testcase_22 AC 1,815 ms
41,396 KB
testcase_23 AC 41 ms
11,136 KB
testcase_24 TLE -
testcase_25 AC 1,455 ms
35,052 KB
testcase_26 TLE -
testcase_27 AC 1,273 ms
32,156 KB
testcase_28 AC 1,255 ms
31,988 KB
testcase_29 AC 974 ms
27,776 KB
testcase_30 AC 283 ms
16,000 KB
testcase_31 AC 742 ms
24,064 KB
testcase_32 AC 713 ms
23,552 KB
testcase_33 TLE -
testcase_34 AC 1,990 ms
43,588 KB
testcase_35 AC 752 ms
24,192 KB
testcase_36 AC 1,101 ms
29,696 KB
testcase_37 AC 1,461 ms
35,128 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

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