結果

問題 No.196 典型DP (1)
ユーザー 👑 rin204rin204
提出日時 2022-10-01 23:31:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-06-06 14:04:15
合計ジャッジ時間 4,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
52,608 KB
testcase_12 AC 39 ms
58,368 KB
testcase_13 AC 40 ms
58,752 KB
testcase_14 AC 43 ms
59,904 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 60 ms
66,304 KB
testcase_17 AC 80 ms
75,776 KB
testcase_18 AC 84 ms
75,904 KB
testcase_19 AC 86 ms
76,544 KB
testcase_20 AC 93 ms
76,416 KB
testcase_21 AC 123 ms
76,928 KB
testcase_22 AC 96 ms
76,416 KB
testcase_23 AC 107 ms
78,312 KB
testcase_24 AC 100 ms
78,464 KB
testcase_25 AC 104 ms
77,056 KB
testcase_26 AC 110 ms
89,984 KB
testcase_27 AC 108 ms
89,856 KB
testcase_28 AC 106 ms
89,740 KB
testcase_29 AC 108 ms
89,624 KB
testcase_30 AC 113 ms
89,728 KB
testcase_31 AC 134 ms
76,544 KB
testcase_32 AC 127 ms
76,416 KB
testcase_33 AC 131 ms
76,536 KB
testcase_34 AC 131 ms
76,288 KB
testcase_35 AC 131 ms
76,288 KB
testcase_36 AC 129 ms
76,928 KB
testcase_37 AC 128 ms
76,416 KB
testcase_38 AC 126 ms
76,928 KB
testcase_39 AC 128 ms
76,800 KB
testcase_40 AC 133 ms
76,488 KB
testcase_41 AC 37 ms
51,584 KB
testcase_42 AC 36 ms
51,712 KB
testcase_43 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 9)
MOD = 10 ** 9 + 7

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

def dfs(pos, bpos):
    dp = [1]
    size = 1
    for npos in edges[pos]:
        if npos == bpos:
            continue
        tmp, s = dfs(npos, pos)
        size += s
        ndp = [0] * size
        for i, v in enumerate(dp):
            for j, u in enumerate(tmp):
                ndp[i + j] += u * v
                ndp[i + j] %= MOD
        dp = ndp
    dp.append(1)
    return dp, size

dp, _ = dfs(0, -1)
print(dp[k])
0