結果

問題 No.827 総神童数
ユーザー sho_00sho_00
提出日時 2020-04-09 11:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 901 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-07-22 11:31:38
合計ジャッジ時間 19,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 44 ms
54,144 KB
testcase_09 AC 829 ms
113,536 KB
testcase_10 AC 282 ms
87,040 KB
testcase_11 AC 150 ms
77,440 KB
testcase_12 AC 177 ms
80,896 KB
testcase_13 AC 627 ms
104,448 KB
testcase_14 AC 125 ms
77,696 KB
testcase_15 AC 314 ms
86,752 KB
testcase_16 AC 633 ms
104,320 KB
testcase_17 AC 799 ms
112,512 KB
testcase_18 AC 366 ms
89,720 KB
testcase_19 AC 901 ms
114,048 KB
testcase_20 AC 611 ms
100,352 KB
testcase_21 AC 467 ms
93,824 KB
testcase_22 AC 672 ms
103,936 KB
testcase_23 AC 104 ms
77,516 KB
testcase_24 AC 787 ms
108,556 KB
testcase_25 AC 551 ms
98,560 KB
testcase_26 AC 785 ms
108,800 KB
testcase_27 AC 504 ms
96,256 KB
testcase_28 AC 507 ms
95,872 KB
testcase_29 AC 438 ms
91,776 KB
testcase_30 AC 205 ms
81,408 KB
testcase_31 AC 347 ms
87,680 KB
testcase_32 AC 333 ms
87,040 KB
testcase_33 AC 841 ms
111,616 KB
testcase_34 AC 798 ms
109,696 KB
testcase_35 AC 363 ms
87,936 KB
testcase_36 AC 442 ms
93,436 KB
testcase_37 AC 571 ms
99,072 KB
testcase_38 AC 827 ms
111,232 KB
権限があれば一括ダウンロードができます

ソースコード

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