結果

問題 No.2949 Product on Tree
ユーザー tailstails
提出日時 2024-10-25 23:21:05
言語 cLay
(20240714-1)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 3,485 ms
コンパイル使用メモリ 176,132 KB
実行使用メモリ 23,492 KB
最終ジャッジ日時 2024-10-25 23:21:14
合計ジャッジ時間 8,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 43 ms
14,684 KB
testcase_04 AC 47 ms
12,844 KB
testcase_05 AC 42 ms
14,620 KB
testcase_06 AC 43 ms
14,344 KB
testcase_07 AC 40 ms
14,436 KB
testcase_08 AC 42 ms
14,688 KB
testcase_09 AC 42 ms
15,016 KB
testcase_10 AC 45 ms
15,696 KB
testcase_11 AC 44 ms
15,872 KB
testcase_12 AC 46 ms
15,944 KB
testcase_13 AC 46 ms
17,644 KB
testcase_14 AC 49 ms
19,436 KB
testcase_15 AC 50 ms
20,820 KB
testcase_16 AC 50 ms
17,828 KB
testcase_17 AC 49 ms
18,096 KB
testcase_18 AC 53 ms
19,468 KB
testcase_19 AC 52 ms
21,520 KB
testcase_20 AC 50 ms
20,884 KB
testcase_21 AC 61 ms
20,896 KB
testcase_22 AC 50 ms
22,176 KB
testcase_23 AC 43 ms
13,168 KB
testcase_24 AC 39 ms
15,088 KB
testcase_25 AC 44 ms
14,676 KB
testcase_26 AC 43 ms
12,908 KB
testcase_27 AC 43 ms
15,028 KB
testcase_28 AC 43 ms
15,216 KB
testcase_29 AC 41 ms
13,168 KB
testcase_30 AC 43 ms
15,320 KB
testcase_31 AC 44 ms
17,052 KB
testcase_32 AC 47 ms
16,752 KB
testcase_33 AC 58 ms
18,848 KB
testcase_34 AC 54 ms
20,208 KB
testcase_35 AC 54 ms
20,204 KB
testcase_36 AC 65 ms
22,944 KB
testcase_37 AC 57 ms
23,492 KB
testcase_38 AC 51 ms
21,284 KB
testcase_39 AC 53 ms
21,732 KB
testcase_40 AC 64 ms
22,764 KB
testcase_41 AC 54 ms
20,848 KB
testcase_42 AC 55 ms
23,024 KB
testcase_43 AC 16 ms
12,504 KB
testcase_44 AC 16 ms
12,532 KB
testcase_45 AC 19 ms
14,916 KB
testcase_46 AC 17 ms
14,176 KB
testcase_47 AC 13 ms
11,884 KB
testcase_48 AC 18 ms
14,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

Mint a[2d5],z;
graph g;

Mint f(ll i,ll p){
	Mint x=1,y;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			Mint b=f(j,i);
			y+=x*b;
			x+=b;
		}
	}
	z+=y*a[i];
	return x*a[i];
}

{
	ll@n;
	rd(a(n));
	int@(u,v)--[n-1];
	g.setEdge(n,n-1,u,v);
	f(0,0);
	wt(z);
}
0