結果

問題 No.2214 Products on Tree
ユーザー mkawa2mkawa2
提出日時 2023-02-14 16:45:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 3,000 ms
コード長 1,388 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 144,564 KB
最終ジャッジ日時 2024-07-17 05:36:41
合計ジャッジ時間 13,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,304 KB
testcase_01 AC 37 ms
52,812 KB
testcase_02 AC 37 ms
53,488 KB
testcase_03 AC 496 ms
120,908 KB
testcase_04 AC 508 ms
129,624 KB
testcase_05 AC 492 ms
123,072 KB
testcase_06 AC 326 ms
108,120 KB
testcase_07 AC 134 ms
86,948 KB
testcase_08 AC 103 ms
80,916 KB
testcase_09 AC 143 ms
86,244 KB
testcase_10 AC 320 ms
112,636 KB
testcase_11 AC 169 ms
90,768 KB
testcase_12 AC 199 ms
93,768 KB
testcase_13 AC 548 ms
130,132 KB
testcase_14 AC 557 ms
128,092 KB
testcase_15 AC 558 ms
130,604 KB
testcase_16 AC 554 ms
130,092 KB
testcase_17 AC 511 ms
130,084 KB
testcase_18 AC 295 ms
116,060 KB
testcase_19 AC 316 ms
118,748 KB
testcase_20 AC 279 ms
112,816 KB
testcase_21 AC 227 ms
99,944 KB
testcase_22 AC 410 ms
130,684 KB
testcase_23 AC 37 ms
53,012 KB
testcase_24 AC 37 ms
53,920 KB
testcase_25 AC 37 ms
53,760 KB
testcase_26 AC 37 ms
53,804 KB
testcase_27 AC 38 ms
52,536 KB
testcase_28 AC 195 ms
119,400 KB
testcase_29 AC 124 ms
87,460 KB
testcase_30 AC 256 ms
143,784 KB
testcase_31 AC 395 ms
142,804 KB
testcase_32 AC 426 ms
144,564 KB
testcase_33 AC 239 ms
131,332 KB
testcase_34 AC 239 ms
131,316 KB
testcase_35 AC 362 ms
130,016 KB
testcase_36 AC 361 ms
130,036 KB
testcase_37 AC 261 ms
128,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n = II()
to = [[] for _ in range(n)]
for _ in range(n-1):
    u, v = LI1()
    to[u].append(v)
    to[v].append(u)

parent, depth = [-1]*n, [0]*n
def dfs(root=0):
    uu, stack, vis = [], [root], [0]*n
    vis[root] = 1
    while stack:
        u = stack.pop()
        uu.append(u)
        for v in to[u]:
            if vis[v]: continue
            vis[v] = 1
            parent[v] = u
            stack.append(v)
    return uu

uu = dfs()
dp = [[1, 1] for _ in range(n)]
for u in uu[:0:-1]:
    p = parent[u]
    dp[p] = [dp[p][0]*(dp[u][1]+dp[u][0]), dp[p][0]*dp[u][1]%md+dp[p][1]*(dp[u][0]+dp[u][1])%md]
    dp[p][0] %= md
    dp[p][1] %= md

print(dp[0][1])
0