結果

問題 No.1227 I hate ThREE
ユーザー tyawanmusityawanmusi
提出日時 2020-07-28 23:02:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-06-10 14:31:40
合計ジャッジ時間 5,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 56 ms
66,560 KB
testcase_04 AC 54 ms
65,408 KB
testcase_05 AC 57 ms
66,176 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 61 ms
67,712 KB
testcase_09 AC 55 ms
66,304 KB
testcase_10 AC 52 ms
64,896 KB
testcase_11 AC 141 ms
114,276 KB
testcase_12 AC 147 ms
114,176 KB
testcase_13 AC 45 ms
60,532 KB
testcase_14 AC 54 ms
65,408 KB
testcase_15 AC 61 ms
68,352 KB
testcase_16 AC 91 ms
92,160 KB
testcase_17 AC 65 ms
71,680 KB
testcase_18 AC 103 ms
91,776 KB
testcase_19 AC 94 ms
91,876 KB
testcase_20 AC 108 ms
92,244 KB
testcase_21 AC 40 ms
58,624 KB
testcase_22 AC 95 ms
92,208 KB
testcase_23 AC 143 ms
114,532 KB
testcase_24 AC 148 ms
114,688 KB
testcase_25 AC 146 ms
114,432 KB
testcase_26 AC 148 ms
114,816 KB
testcase_27 AC 153 ms
114,488 KB
testcase_28 AC 154 ms
114,560 KB
testcase_29 AC 152 ms
114,496 KB
testcase_30 AC 146 ms
114,172 KB
testcase_31 AC 147 ms
114,560 KB
testcase_32 AC 150 ms
114,560 KB
testcase_33 AC 147 ms
114,560 KB
testcase_34 AC 146 ms
114,556 KB
testcase_35 AC 146 ms
114,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2000)
input=sys.stdin.readline
mod=10**9+7
n,c=map(int,input().split())
minc=min(n*6-5,c)
edge=[[]for _ in range(n)]
for _ in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  edge[a].append(b)
  edge[b].append(a)
dp=[minc*[1]for _ in range(n)]
def dfs(r,node):
  for mode in edge[node]:
    if r==mode:continue
    dpsub=dfs(node,mode)
    for i in range(minc):
      f=0
      if i>2:f+=dpsub[i-3]
      if i<minc-3:f+=dpsub[i+3]
      dp[node][i]*=f
      dp[node][i]%=mod
  return dp[node]
lastdp=dfs(-1,0)
print((sum(lastdp)+lastdp[minc//2]*(c-minc))%mod)
0