結果

問題 No.827 総神童数
ユーザー sho_00sho_00
提出日時 2020-04-09 11:53:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 959 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-07-22 23:06:40
合計ジャッジ時間 39,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 31 ms
11,136 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 30 ms
11,136 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 TLE -
testcase_10 AC 715 ms
26,368 KB
testcase_11 AC 55 ms
11,776 KB
testcase_12 AC 293 ms
17,664 KB
testcase_13 AC 1,825 ms
45,908 KB
testcase_14 AC 80 ms
12,416 KB
testcase_15 AC 641 ms
25,088 KB
testcase_16 AC 1,834 ms
46,432 KB
testcase_17 TLE -
testcase_18 AC 838 ms
29,184 KB
testcase_19 TLE -
testcase_20 AC 1,472 ms
38,356 KB
testcase_21 AC 1,033 ms
31,104 KB
testcase_22 AC 1,662 ms
42,500 KB
testcase_23 AC 38 ms
11,136 KB
testcase_24 AC 1,856 ms
43,912 KB
testcase_25 AC 1,343 ms
36,340 KB
testcase_26 AC 1,860 ms
44,192 KB
testcase_27 AC 1,161 ms
33,248 KB
testcase_28 AC 1,162 ms
32,860 KB
testcase_29 AC 916 ms
28,672 KB
testcase_30 AC 246 ms
16,384 KB
testcase_31 AC 638 ms
24,704 KB
testcase_32 AC 632 ms
24,192 KB
testcase_33 TLE -
testcase_34 AC 1,850 ms
44,908 KB
testcase_35 AC 672 ms
24,832 KB
testcase_36 AC 993 ms
30,592 KB
testcase_37 AC 1,330 ms
35,968 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import math
n=int(input())
E=[[] for _ in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  E[a].append(b)
  E[b].append(a)
depth=[0]*n
seen=[0]*n
seen[0]=1
stack=deque([0])
while stack:
  u=stack.pop()
  for v in E[u]:
    if seen[v]!=1:
      seen[v]=1
      depth[v]=depth[u]+1
      stack.append(v)
mod=10**9+7

def sq(a, b, mod):  # aのb乗を剰余
    if b == 0:
        return 1
    elif b % 2 == 0:
        return sq(a, b // 2, mod)**2 % mod
    else:
        return sq(a, b - 1, mod) * a % mod
  
def egcd(a, b):
    if a == 0:
        return b, 0, 1
    else:
        g, y, x = egcd(b % a, a)
        return g, x - (b // a) * y, y

def modinv(a, m):
    g, x, y = egcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        return x % m
      
v=math.factorial(n)%mod
inv=0
for i in range(n):
  inv+=modinv(depth[i]+1,mod)
ans=v*inv%mod
print(ans)
0