結果

問題 No.2047 Path Factory
ユーザー sapphire__15sapphire__15
提出日時 2022-05-23 23:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 192,128 KB
最終ジャッジ日時 2024-09-20 13:24:25
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 36 ms
52,252 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 169 ms
83,868 KB
testcase_08 AC 152 ms
82,304 KB
testcase_09 AC 170 ms
83,456 KB
testcase_10 AC 210 ms
87,296 KB
testcase_11 AC 172 ms
82,672 KB
testcase_12 AC 161 ms
81,152 KB
testcase_13 AC 145 ms
80,512 KB
testcase_14 AC 172 ms
82,944 KB
testcase_15 AC 174 ms
84,224 KB
testcase_16 AC 230 ms
94,080 KB
testcase_17 AC 226 ms
93,568 KB
testcase_18 AC 195 ms
91,788 KB
testcase_19 AC 395 ms
119,680 KB
testcase_20 AC 424 ms
126,464 KB
testcase_21 AC 289 ms
113,152 KB
testcase_22 AC 125 ms
82,560 KB
testcase_23 AC 142 ms
81,936 KB
testcase_24 AC 125 ms
82,432 KB
testcase_25 AC 352 ms
186,368 KB
testcase_26 AC 498 ms
192,128 KB
testcase_27 AC 213 ms
88,960 KB
testcase_28 AC 146 ms
91,264 KB
testcase_29 AC 52 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200000)
MOD = 998244353

N = int(input())
edge = [[] for _ in range(N)]
for i in range(N-1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edge[u].append(v)
    edge[v].append(u)

def dfs(now, prv = -1):
    # must, can cannot
    subDp = (1, 0, 0)
    for nxt in edge[now]:
        if nxt == prv: continue
        child = dfs(nxt, now)
        connect    = child[0] + child[1]
        disConnect = child[1] + child[2]
        subDp = (
            subDp[0] * disConnect % MOD,
            (subDp[0] * connect + subDp[1] * disConnect) % MOD,
            (subDp[1] * connect + subDp[2] * disConnect) % MOD
        )
    return subDp

print(sum(dfs(0)[1:]) % MOD)
0