結果

問題 No.2214 Products on Tree
ユーザー tassei903tassei903
提出日時 2023-02-11 13:23:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 690 ms / 3,000 ms
コード長 934 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 163,200 KB
最終ジャッジ日時 2024-07-08 03:08:36
合計ジャッジ時間 15,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 626 ms
121,488 KB
testcase_04 AC 620 ms
124,928 KB
testcase_05 AC 626 ms
128,640 KB
testcase_06 AC 432 ms
107,776 KB
testcase_07 AC 189 ms
84,480 KB
testcase_08 AC 157 ms
80,896 KB
testcase_09 AC 219 ms
88,064 KB
testcase_10 AC 433 ms
111,232 KB
testcase_11 AC 257 ms
93,056 KB
testcase_12 AC 311 ms
98,048 KB
testcase_13 AC 690 ms
133,504 KB
testcase_14 AC 669 ms
133,504 KB
testcase_15 AC 677 ms
133,760 KB
testcase_16 AC 658 ms
133,760 KB
testcase_17 AC 662 ms
134,016 KB
testcase_18 AC 348 ms
116,736 KB
testcase_19 AC 376 ms
119,168 KB
testcase_20 AC 342 ms
114,560 KB
testcase_21 AC 283 ms
105,344 KB
testcase_22 AC 451 ms
131,456 KB
testcase_23 AC 43 ms
52,096 KB
testcase_24 AC 41 ms
52,352 KB
testcase_25 AC 42 ms
52,096 KB
testcase_26 AC 42 ms
51,968 KB
testcase_27 AC 42 ms
51,840 KB
testcase_28 AC 266 ms
112,244 KB
testcase_29 AC 171 ms
88,960 KB
testcase_30 AC 354 ms
163,200 KB
testcase_31 AC 490 ms
162,928 KB
testcase_32 AC 443 ms
143,452 KB
testcase_33 AC 319 ms
125,568 KB
testcase_34 AC 319 ms
125,696 KB
testcase_35 AC 514 ms
135,296 KB
testcase_36 AC 518 ms
135,296 KB
testcase_37 AC 341 ms
125,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
n = ni()
g = [[] for i in range(n)]

for _ in range(n-1):
    u,v = na()
    u-=1
    v-=1
    g[u].append(v)
    g[v].append(u)

et = []
chi = [[] for i in range(n)]
d = [0]
seen = [0] * n
while d:
    x = d.pop()
    seen[x] = 1
    et.append(x)
    for y in g[x]:
        if seen[y] ^ 1:
            chi[x].append(y)
            d.append(y)

dp1 = [1] * n
dp2 = [1] * n
for x in et[::-1]:
    for y in chi[x]:
        dp1[x],dp2[x] = dp1[x] * dp2[y] + dp2[x] * dp1[y] + dp1[x] * dp1[y], dp2[x] * (dp2[y] + dp1[y])
        dp1[x] %= mod
        dp2[x] %= mod
        #print(x,dp1[x],dp2[x])
print(dp1[0])
0