結果

問題 No.827 総神童数
ユーザー ntudantuda
提出日時 2022-12-11 14:13:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 124,476 KB
最終ジャッジ日時 2024-10-15 11:19:10
合計ジャッジ時間 14,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 606 ms
120,576 KB
testcase_20 AC 458 ms
109,724 KB
testcase_21 AC 363 ms
100,480 KB
testcase_22 AC 486 ms
111,488 KB
testcase_23 AC 83 ms
75,264 KB
testcase_24 AC 530 ms
115,968 KB
testcase_25 AC 427 ms
106,496 KB
testcase_26 AC 558 ms
115,456 KB
testcase_27 AC 392 ms
103,296 KB
testcase_28 AC 378 ms
102,912 KB
testcase_29 AC 325 ms
97,792 KB
testcase_30 AC 165 ms
83,456 KB
testcase_31 AC 276 ms
92,800 KB
testcase_32 AC 262 ms
92,160 KB
testcase_33 AC 577 ms
119,276 KB
testcase_34 AC 535 ms
115,968 KB
testcase_35 AC 317 ms
93,440 KB
testcase_36 AC 361 ms
100,096 KB
testcase_37 AC 414 ms
106,112 KB
testcase_38 AC 582 ms
118,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N = int(input())
UV = [list(map(int, input().split())) for _ in range(N - 1)]
E = [[] for _ in range(N)]
factn = 1
for i in range(1, N + 1):
    factn *= i
    factn %= MOD

for u, v in UV:
    u -= 1
    v -= 1
    E[u].append(v)
    E[v].append(u)

def dfs(u, p, g):
    G[g] += 1
    for v in E[u]:
        if v != p:
            dfs(v, u, g + 1)

G = [0] * N
dfs(0, -1, 0)
ans = 0
for i, g in enumerate(G, start = 1):
    ans += factn * pow(i,MOD-2,MOD) * g
    ans %= MOD
print(ans)
0