結果

問題 No.2949 Product on Tree
ユーザー tailstails
提出日時 2024-10-25 23:19:06
言語 cLay
(20240714-1)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 176,888 KB
実行使用メモリ 26,416 KB
最終ジャッジ日時 2024-10-25 23:19:43
合計ジャッジ時間 8,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,328 KB
testcase_01 AC 3 ms
6,824 KB
testcase_02 AC 4 ms
7,108 KB
testcase_03 AC 49 ms
16,268 KB
testcase_04 AC 42 ms
15,796 KB
testcase_05 AC 46 ms
15,708 KB
testcase_06 AC 47 ms
15,692 KB
testcase_07 AC 43 ms
15,364 KB
testcase_08 AC 50 ms
15,608 KB
testcase_09 AC 47 ms
14,172 KB
testcase_10 AC 51 ms
16,476 KB
testcase_11 AC 47 ms
16,860 KB
testcase_12 AC 49 ms
18,452 KB
testcase_13 AC 52 ms
18,776 KB
testcase_14 AC 54 ms
19,944 KB
testcase_15 AC 56 ms
19,884 KB
testcase_16 AC 61 ms
21,220 KB
testcase_17 AC 53 ms
19,008 KB
testcase_18 AC 60 ms
21,500 KB
testcase_19 AC 60 ms
22,224 KB
testcase_20 AC 59 ms
20,052 KB
testcase_21 AC 72 ms
22,680 KB
testcase_22 AC 55 ms
21,164 KB
testcase_23 AC 43 ms
15,740 KB
testcase_24 AC 46 ms
15,864 KB
testcase_25 AC 44 ms
15,524 KB
testcase_26 AC 47 ms
15,340 KB
testcase_27 AC 45 ms
15,736 KB
testcase_28 AC 47 ms
15,996 KB
testcase_29 AC 44 ms
16,120 KB
testcase_30 AC 44 ms
16,508 KB
testcase_31 AC 48 ms
17,272 KB
testcase_32 AC 53 ms
15,612 KB
testcase_33 AC 57 ms
20,524 KB
testcase_34 AC 64 ms
22,752 KB
testcase_35 AC 62 ms
18,936 KB
testcase_36 AC 60 ms
22,512 KB
testcase_37 AC 61 ms
23,988 KB
testcase_38 AC 63 ms
22,376 KB
testcase_39 AC 92 ms
20,856 KB
testcase_40 AC 59 ms
25,592 KB
testcase_41 AC 59 ms
24,364 KB
testcase_42 AC 60 ms
26,416 KB
testcase_43 AC 16 ms
13,424 KB
testcase_44 AC 16 ms
13,312 KB
testcase_45 AC 19 ms
16,260 KB
testcase_46 AC 17 ms
16,104 KB
testcase_47 AC 15 ms
12,908 KB
testcase_48 AC 17 ms
14,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

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

void f(ll i,ll p){
	Mint x=1,y;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f(j,i);
			y+=x*b[j];
			x+=b[j];
		}
	}
	b[i]=x*a[i];
	z+=y*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