結果

問題 No.2949 Product on Tree
ユーザー ntudantuda
提出日時 2024-10-26 14:07:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,981 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 125,868 KB
最終ジャッジ日時 2024-10-26 14:09:21
合計ジャッジ時間 86,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 1,774 ms
102,416 KB
testcase_04 AC 1,695 ms
100,508 KB
testcase_05 AC 1,730 ms
102,728 KB
testcase_06 AC 1,723 ms
102,896 KB
testcase_07 AC 1,705 ms
100,820 KB
testcase_08 AC 1,737 ms
103,076 KB
testcase_09 AC 1,755 ms
103,024 KB
testcase_10 AC 1,789 ms
102,568 KB
testcase_11 AC 1,814 ms
104,032 KB
testcase_12 AC 1,767 ms
103,848 KB
testcase_13 AC 1,803 ms
105,684 KB
testcase_14 AC 1,874 ms
105,516 KB
testcase_15 AC 1,917 ms
113,156 KB
testcase_16 AC 1,902 ms
111,084 KB
testcase_17 AC 1,950 ms
111,148 KB
testcase_18 AC 1,921 ms
112,404 KB
testcase_19 AC 1,949 ms
116,432 KB
testcase_20 AC 1,936 ms
111,716 KB
testcase_21 AC 1,952 ms
113,228 KB
testcase_22 AC 1,890 ms
115,992 KB
testcase_23 AC 1,734 ms
103,984 KB
testcase_24 AC 1,742 ms
104,248 KB
testcase_25 AC 1,723 ms
104,148 KB
testcase_26 AC 1,786 ms
104,176 KB
testcase_27 AC 1,794 ms
104,080 KB
testcase_28 AC 1,759 ms
104,192 KB
testcase_29 AC 1,757 ms
104,368 KB
testcase_30 AC 1,806 ms
104,232 KB
testcase_31 AC 1,789 ms
105,396 KB
testcase_32 AC 1,789 ms
107,052 KB
testcase_33 AC 1,917 ms
111,152 KB
testcase_34 AC 1,959 ms
118,452 KB
testcase_35 AC 1,965 ms
113,916 KB
testcase_36 AC 1,966 ms
120,768 KB
testcase_37 AC 1,951 ms
123,180 KB
testcase_38 AC 1,961 ms
118,700 KB
testcase_39 AC 1,972 ms
116,096 KB
testcase_40 AC 1,977 ms
125,560 KB
testcase_41 AC 1,936 ms
121,900 KB
testcase_42 AC 1,981 ms
125,868 KB
testcase_43 AC 984 ms
69,476 KB
testcase_44 AC 954 ms
70,476 KB
testcase_45 AC 1,273 ms
87,464 KB
testcase_46 AC 1,093 ms
79,456 KB
testcase_47 AC 812 ms
60,856 KB
testcase_48 AC 1,133 ms
81,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200050)

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