結果

問題 No.196 典型DP (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-09 18:23:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-06-06 03:16:15
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 42 ms
58,112 KB
testcase_13 AC 43 ms
59,392 KB
testcase_14 AC 48 ms
60,544 KB
testcase_15 AC 55 ms
66,048 KB
testcase_16 AC 73 ms
75,672 KB
testcase_17 AC 94 ms
76,300 KB
testcase_18 AC 123 ms
76,800 KB
testcase_19 AC 126 ms
76,928 KB
testcase_20 AC 161 ms
77,112 KB
testcase_21 AC 171 ms
77,700 KB
testcase_22 AC 168 ms
77,824 KB
testcase_23 AC 163 ms
83,328 KB
testcase_24 AC 153 ms
80,744 KB
testcase_25 AC 165 ms
80,640 KB
testcase_26 AC 149 ms
93,824 KB
testcase_27 AC 147 ms
93,004 KB
testcase_28 AC 145 ms
93,212 KB
testcase_29 AC 147 ms
93,204 KB
testcase_30 AC 146 ms
92,732 KB
testcase_31 AC 161 ms
76,688 KB
testcase_32 AC 162 ms
77,056 KB
testcase_33 AC 162 ms
76,928 KB
testcase_34 AC 163 ms
76,928 KB
testcase_35 AC 163 ms
76,956 KB
testcase_36 AC 163 ms
76,800 KB
testcase_37 AC 145 ms
77,056 KB
testcase_38 AC 161 ms
76,592 KB
testcase_39 AC 160 ms
76,604 KB
testcase_40 AC 163 ms
76,928 KB
testcase_41 AC 38 ms
52,096 KB
testcase_42 AC 39 ms
51,840 KB
testcase_43 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(4000)
def f(v,p,E):
  if v and len(E[v])==1: return [1,1]
  L=[1]
  for c in E[v]:
    if c==p: continue
    L=m(L,f(c,v,E))
  L.append(1)
  return L
def m(L1, L2):
  M=10**9+7
  L=[0]*(len(L1)+len(L2)-1)
  for i,a in enumerate(L1):
    for j,b in enumerate(L2): L[i+j]+=a*b
  return [v%M for v in L]
N,K=map(int,input().split())
E=[[] for i in range(N)]
for i in range(N-1):
  a,b=map(int,input().split())
  E[a].append(b)
  E[b].append(a)
L=f(0,-1,E)
L.append(1)
print(L[K])
0