結果

問題 No.827 総神童数
ユーザー ttrttr
提出日時 2020-02-26 15:22:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,860 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,660 KB
最終ジャッジ日時 2024-10-13 15:22:22
合計ジャッジ時間 34,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 1,860 ms
73,660 KB
testcase_10 AC 612 ms
33,112 KB
testcase_11 AC 55 ms
11,904 KB
testcase_12 AC 271 ms
20,480 KB
testcase_13 AC 1,463 ms
61,084 KB
testcase_14 AC 80 ms
12,800 KB
testcase_15 AC 571 ms
31,400 KB
testcase_16 AC 1,467 ms
61,780 KB
testcase_17 AC 1,750 ms
70,844 KB
testcase_18 AC 731 ms
37,112 KB
testcase_19 AC 1,784 ms
69,272 KB
testcase_20 AC 1,246 ms
52,288 KB
testcase_21 AC 890 ms
41,088 KB
testcase_22 AC 1,392 ms
57,760 KB
testcase_23 AC 37 ms
11,008 KB
testcase_24 AC 1,519 ms
60,924 KB
testcase_25 AC 1,143 ms
49,256 KB
testcase_26 AC 1,531 ms
61,492 KB
testcase_27 AC 1,028 ms
44,712 KB
testcase_28 AC 985 ms
43,924 KB
testcase_29 AC 784 ms
37,564 KB
testcase_30 AC 244 ms
19,328 KB
testcase_31 AC 606 ms
31,584 KB
testcase_32 AC 588 ms
30,676 KB
testcase_33 AC 1,699 ms
65,896 KB
testcase_34 AC 1,548 ms
61,900 KB
testcase_35 AC 621 ms
31,812 KB
testcase_36 AC 889 ms
40,832 KB
testcase_37 AC 1,162 ms
48,928 KB
testcase_38 AC 1,664 ms
65,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = [[] for _ in range(N)]
for _ in range(N-1):
    u,v = map(int, input().split())
    E[u-1].append(v-1)
    E[v-1].append(u-1)

from collections import deque
q = deque()
q.append((0, 0))
rnk = [-1]*N
rnk[0] = 0
while q:
    temp = q.popleft()
    u = temp[0]
    r = temp[1]
    for v in E[u]:
        if rnk[v] >= 0:
            continue
        rnk[v] = r+1
        q.append((v, r+1))

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 10**9+7 #出力の制限
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

ans = g1[N]
for i in range(1, N):
    ans += cmb(N, rnk[i]+1, mod) * g1[rnk[i]] * g1[N-rnk[i]-1]
    ans %= mod

print(ans)
0