結果

問題 No.2047 Path Factory
ユーザー sapphire__15sapphire__15
提出日時 2022-05-23 17:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 192,128 KB
最終ジャッジ日時 2024-09-20 13:16:11
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 176 ms
84,352 KB
testcase_08 AC 175 ms
83,072 KB
testcase_09 AC 188 ms
83,584 KB
testcase_10 AC 223 ms
86,912 KB
testcase_11 AC 166 ms
82,816 KB
testcase_12 AC 152 ms
81,024 KB
testcase_13 AC 138 ms
80,532 KB
testcase_14 AC 159 ms
83,192 KB
testcase_15 AC 183 ms
83,968 KB
testcase_16 AC 217 ms
94,796 KB
testcase_17 AC 232 ms
93,312 KB
testcase_18 AC 220 ms
91,904 KB
testcase_19 AC 362 ms
119,296 KB
testcase_20 AC 437 ms
126,464 KB
testcase_21 AC 293 ms
113,792 KB
testcase_22 AC 119 ms
83,056 KB
testcase_23 AC 137 ms
81,408 KB
testcase_24 AC 125 ms
82,816 KB
testcase_25 AC 365 ms
186,368 KB
testcase_26 AC 508 ms
192,128 KB
testcase_27 AC 236 ms
89,472 KB
testcase_28 AC 155 ms
90,880 KB
testcase_29 AC 58 ms
62,848 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):
    global edge, dp
    # 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