結果

問題 No.2949 Product on Tree
ユーザー ntudantuda
提出日時 2024-10-26 14:05:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 579 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 146,560 KB
最終ジャッジ日時 2024-10-26 14:05:50
合計ジャッジ時間 27,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,676 KB
testcase_01 AC 36 ms
52,572 KB
testcase_02 AC 38 ms
52,600 KB
testcase_03 AC 620 ms
133,532 KB
testcase_04 AC 559 ms
124,044 KB
testcase_05 AC 573 ms
134,480 KB
testcase_06 AC 569 ms
134,276 KB
testcase_07 AC 567 ms
123,848 KB
testcase_08 AC 578 ms
135,232 KB
testcase_09 AC 592 ms
136,356 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 601 ms
134,604 KB
testcase_24 AC 588 ms
135,040 KB
testcase_25 AC 597 ms
134,784 KB
testcase_26 AC 580 ms
135,168 KB
testcase_27 AC 590 ms
135,984 KB
testcase_28 AC 613 ms
135,980 KB
testcase_29 AC 595 ms
137,136 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 279 ms
122,208 KB
testcase_44 AC 280 ms
118,292 KB
testcase_45 AC 357 ms
146,004 KB
testcase_46 AC 329 ms
129,496 KB
testcase_47 AC 253 ms
114,764 KB
testcase_48 AC 329 ms
131,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N = int(input())
A = list(map(int, input().split()))
UV = [list(map(int, input().split())) for _ in range(N - 1)]
E = [[] for _ in range(N)]
for u, v in UV:
    u -= 1
    v -= 1
    E[u].append(v)
    E[v].append(u)

def dfs(x, p):
    global ans, X
    for y in E[x]:
        if y != p:
            X[y] += (X[x] + Y[x] + A[x]) * A[y]
            X[y] %= MOD
            dfs(y, x)
            Y[x] += (Y[y]+ A[y]) * A[x]
            Y[x] %= MOD
    #print(x,X,Y)

X = [0] * N
Y = [0] * N
ans = 0
dfs(0, -1)
#print(X,sum(X))
#print(Y,sum(Y))
print(sum(X) % MOD)
0