結果

問題 No.2949 Product on Tree
ユーザー nouka28nouka28
提出日時 2024-09-23 07:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,450 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 251,540 KB
最終ジャッジ日時 2024-09-23 07:29:33
合計ジャッジ時間 49,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,756 KB
testcase_01 AC 38 ms
52,540 KB
testcase_02 AC 38 ms
52,536 KB
testcase_03 AC 885 ms
110,728 KB
testcase_04 AC 808 ms
108,992 KB
testcase_05 AC 855 ms
111,048 KB
testcase_06 AC 860 ms
110,732 KB
testcase_07 AC 810 ms
108,976 KB
testcase_08 AC 861 ms
112,676 KB
testcase_09 AC 860 ms
113,384 KB
testcase_10 AC 849 ms
117,776 KB
testcase_11 AC 1,100 ms
132,344 KB
testcase_12 AC 942 ms
147,244 KB
testcase_13 AC 942 ms
156,620 KB
testcase_14 AC 1,204 ms
212,444 KB
testcase_15 AC 1,313 ms
209,316 KB
testcase_16 AC 1,341 ms
210,612 KB
testcase_17 AC 1,005 ms
195,600 KB
testcase_18 AC 1,330 ms
225,436 KB
testcase_19 AC 1,168 ms
200,104 KB
testcase_20 AC 1,362 ms
225,724 KB
testcase_21 AC 1,417 ms
229,496 KB
testcase_22 AC 1,298 ms
223,564 KB
testcase_23 AC 900 ms
111,140 KB
testcase_24 AC 905 ms
111,196 KB
testcase_25 AC 896 ms
111,224 KB
testcase_26 AC 912 ms
111,444 KB
testcase_27 AC 893 ms
111,776 KB
testcase_28 AC 883 ms
112,760 KB
testcase_29 AC 907 ms
113,432 KB
testcase_30 AC 909 ms
119,480 KB
testcase_31 AC 936 ms
125,844 KB
testcase_32 AC 1,146 ms
147,236 KB
testcase_33 AC 1,277 ms
189,728 KB
testcase_34 AC 1,250 ms
251,540 KB
testcase_35 AC 1,450 ms
218,716 KB
testcase_36 AC 1,135 ms
220,384 KB
testcase_37 AC 1,197 ms
230,828 KB
testcase_38 AC 1,251 ms
242,380 KB
testcase_39 AC 1,333 ms
218,924 KB
testcase_40 AC 1,111 ms
230,516 KB
testcase_41 AC 1,128 ms
209,964 KB
testcase_42 AC 1,146 ms
231,152 KB
testcase_43 AC 473 ms
104,576 KB
testcase_44 AC 447 ms
105,144 KB
testcase_45 AC 559 ms
122,208 KB
testcase_46 AC 496 ms
109,120 KB
testcase_47 AC 384 ms
101,760 KB
testcase_48 AC 505 ms
109,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2*10**5)

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

mod=998244353

n=int(input())

a=list(map(int,input().split()))

g=[[]for i in range(n)]

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

ans=0

def dfs(p,prev):
	global ans
	
	sm1=0
	sm2=0

	for e in g[p]:
		if e==prev:continue
		v=dfs(e,p)
		sm1=(sm1+v)%mod
		sm2=(sm2+v*v)%mod
	
	ans=(ans+a[p]*sm1)%mod

	ans=(ans+a[p]*(sm1*sm1-sm2)*pow(2,mod-2,mod))%mod

	return a[p]*(1+sm1)%mod

dfs(0,-1)

print(ans)
0