結果

問題 No.2949 Product on Tree
ユーザー mkawa2mkawa2
提出日時 2024-10-25 22:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 1,340 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 152,672 KB
最終ジャッジ日時 2024-10-25 22:28:57
合計ジャッジ時間 24,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,260 KB
testcase_01 AC 39 ms
52,716 KB
testcase_02 AC 36 ms
53,448 KB
testcase_03 AC 492 ms
125,112 KB
testcase_04 AC 463 ms
128,048 KB
testcase_05 AC 465 ms
123,296 KB
testcase_06 AC 494 ms
122,312 KB
testcase_07 AC 459 ms
128,216 KB
testcase_08 AC 468 ms
124,200 KB
testcase_09 AC 467 ms
121,896 KB
testcase_10 AC 466 ms
122,116 KB
testcase_11 AC 511 ms
124,320 KB
testcase_12 AC 468 ms
124,156 KB
testcase_13 AC 473 ms
128,408 KB
testcase_14 AC 458 ms
127,896 KB
testcase_15 AC 461 ms
118,560 KB
testcase_16 AC 456 ms
127,948 KB
testcase_17 AC 456 ms
128,524 KB
testcase_18 AC 478 ms
122,408 KB
testcase_19 AC 461 ms
124,260 KB
testcase_20 AC 481 ms
123,280 KB
testcase_21 AC 473 ms
124,400 KB
testcase_22 AC 469 ms
127,896 KB
testcase_23 AC 485 ms
128,284 KB
testcase_24 AC 489 ms
128,668 KB
testcase_25 AC 506 ms
128,680 KB
testcase_26 AC 481 ms
128,136 KB
testcase_27 AC 484 ms
128,280 KB
testcase_28 AC 485 ms
128,420 KB
testcase_29 AC 487 ms
128,276 KB
testcase_30 AC 494 ms
128,284 KB
testcase_31 AC 478 ms
128,164 KB
testcase_32 AC 486 ms
128,036 KB
testcase_33 AC 507 ms
128,912 KB
testcase_34 AC 468 ms
127,768 KB
testcase_35 AC 481 ms
128,396 KB
testcase_36 AC 471 ms
127,648 KB
testcase_37 AC 480 ms
127,376 KB
testcase_38 AC 466 ms
127,652 KB
testcase_39 AC 481 ms
128,024 KB
testcase_40 AC 486 ms
128,168 KB
testcase_41 AC 494 ms
127,640 KB
testcase_42 AC 466 ms
128,036 KB
testcase_43 AC 207 ms
116,364 KB
testcase_44 AC 209 ms
117,728 KB
testcase_45 AC 260 ms
152,672 KB
testcase_46 AC 237 ms
134,856 KB
testcase_47 AC 188 ms
116,312 KB
testcase_48 AC 245 ms
135,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n=II()
aa=LI()
to=[[] for _ in range(n)]
for _ in range(n-1):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)

def dfs(root=0):
    uu, stack = [], [root]
    while stack:
        u = stack.pop()
        uu.append(u)
        for v in to[u]:
            if v == parent[u]: continue
            parent[v] = u
            depth[v] = depth[u]+1
            stack.append(v)
    return uu

parent, depth = [-1]*n, [0]*n
uu = dfs()

dp=aa[:]
ans=0
for u in uu[:0:-1]:
    p=parent[u]
    ans+=dp[u]*dp[p]%md
    dp[p]+=dp[u]*aa[p]%md
    ans%=md
    dp[p]%=md
print(ans%md)
0