結果

問題 No.827 総神童数
ユーザー H3PO4H3PO4
提出日時 2021-02-17 09:39:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 119,888 KB
最終ジャッジ日時 2024-09-13 20:05:52
合計ジャッジ時間 13,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,392 KB
testcase_01 AC 47 ms
61,892 KB
testcase_02 AC 48 ms
62,200 KB
testcase_03 AC 48 ms
61,884 KB
testcase_04 AC 48 ms
61,480 KB
testcase_05 AC 48 ms
61,472 KB
testcase_06 AC 48 ms
62,436 KB
testcase_07 AC 48 ms
60,804 KB
testcase_08 AC 48 ms
61,412 KB
testcase_09 AC 470 ms
119,888 KB
testcase_10 AC 196 ms
91,796 KB
testcase_11 AC 75 ms
75,064 KB
testcase_12 AC 123 ms
83,496 KB
testcase_13 AC 380 ms
111,844 KB
testcase_14 AC 85 ms
79,316 KB
testcase_15 AC 191 ms
92,896 KB
testcase_16 AC 380 ms
112,032 KB
testcase_17 AC 410 ms
116,124 KB
testcase_18 AC 215 ms
96,796 KB
testcase_19 AC 491 ms
119,840 KB
testcase_20 AC 382 ms
110,940 KB
testcase_21 AC 308 ms
101,872 KB
testcase_22 AC 396 ms
111,816 KB
testcase_23 AC 74 ms
73,536 KB
testcase_24 AC 449 ms
115,428 KB
testcase_25 AC 337 ms
101,944 KB
testcase_26 AC 462 ms
115,420 KB
testcase_27 AC 308 ms
104,912 KB
testcase_28 AC 287 ms
96,188 KB
testcase_29 AC 248 ms
93,560 KB
testcase_30 AC 130 ms
83,280 KB
testcase_31 AC 213 ms
89,984 KB
testcase_32 AC 218 ms
91,436 KB
testcase_33 AC 554 ms
112,732 KB
testcase_34 AC 498 ms
115,252 KB
testcase_35 AC 219 ms
89,688 KB
testcase_36 AC 302 ms
101,728 KB
testcase_37 AC 354 ms
101,864 KB
testcase_38 AC 500 ms
115,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

MOD = 10 ** 9 + 7
MAX = 2 * 10 ** 5 + 10
modinv = lambda a, mod=MOD: pow(a, mod - 2, mod)
fac = [1] * MAX
for i in range(1, MAX):
    fac[i] = fac[i - 1] * i % MOD

N = int(input())
T = [[] for _ in range(N)]
UV = [tuple(int(x) - 1 for x in input().split()) for _ in range(N - 1)]
for u, v in UV:
    T[u].append(v)
    T[v].append(u)

# dfs
d = deque([0])
nonvisited = [True] * N
nonvisited[0] = False
height = [0] * N
while d:
    v = d.pop()
    h = height[v] + 1
    for x in T[v]:
        if nonvisited[x]:
            d.append(x)
            nonvisited[x] = False
            height[x] = h

ans = 0
for h in height:
    ans += fac[N] * modinv(h + 1)
    ans %= MOD
print(ans)
0