結果

問題 No.1227 I hate ThREE
ユーザー tyawanmusityawanmusi
提出日時 2020-08-23 18:12:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 115,200 KB
最終ジャッジ日時 2024-11-15 15:53:38
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 60 ms
66,816 KB
testcase_04 AC 58 ms
65,536 KB
testcase_05 AC 58 ms
66,304 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 61 ms
67,840 KB
testcase_09 AC 58 ms
66,304 KB
testcase_10 AC 55 ms
64,512 KB
testcase_11 AC 147 ms
114,424 KB
testcase_12 AC 151 ms
114,560 KB
testcase_13 AC 46 ms
60,544 KB
testcase_14 AC 56 ms
65,060 KB
testcase_15 AC 61 ms
68,480 KB
testcase_16 AC 96 ms
92,032 KB
testcase_17 AC 68 ms
71,936 KB
testcase_18 AC 108 ms
91,904 KB
testcase_19 AC 101 ms
92,376 KB
testcase_20 AC 112 ms
92,288 KB
testcase_21 AC 45 ms
58,624 KB
testcase_22 AC 101 ms
92,032 KB
testcase_23 WA -
testcase_24 AC 157 ms
114,688 KB
testcase_25 WA -
testcase_26 AC 149 ms
114,944 KB
testcase_27 AC 150 ms
114,400 KB
testcase_28 AC 157 ms
114,688 KB
testcase_29 AC 153 ms
114,432 KB
testcase_30 AC 149 ms
114,816 KB
testcase_31 AC 149 ms
114,432 KB
testcase_32 AC 153 ms
114,480 KB
testcase_33 AC 150 ms
114,816 KB
testcase_34 AC 153 ms
114,432 KB
testcase_35 AC 149 ms
114,432 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-6,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