結果

問題 No.2949 Product on Tree
ユーザー tailstails
提出日時 2024-10-25 23:14:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 4,298 ms
コンパイル使用メモリ 175,620 KB
実行使用メモリ 26,396 KB
最終ジャッジ日時 2024-10-25 23:14:10
合計ジャッジ時間 10,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,876 KB
testcase_01 AC 5 ms
7,364 KB
testcase_02 AC 4 ms
8,004 KB
testcase_03 AC 63 ms
16,812 KB
testcase_04 AC 56 ms
14,628 KB
testcase_05 AC 68 ms
16,328 KB
testcase_06 AC 83 ms
16,928 KB
testcase_07 AC 57 ms
14,988 KB
testcase_08 AC 60 ms
16,736 KB
testcase_09 AC 61 ms
16,648 KB
testcase_10 AC 66 ms
17,304 KB
testcase_11 AC 63 ms
17,820 KB
testcase_12 AC 70 ms
17,696 KB
testcase_13 AC 74 ms
19,620 KB
testcase_14 AC 73 ms
19,676 KB
testcase_15 AC 82 ms
22,456 KB
testcase_16 AC 73 ms
21,384 KB
testcase_17 AC 73 ms
21,564 KB
testcase_18 AC 71 ms
19,772 KB
testcase_19 AC 92 ms
23,820 KB
testcase_20 AC 95 ms
22,932 KB
testcase_21 AC 77 ms
22,464 KB
testcase_22 AC 85 ms
23,476 KB
testcase_23 AC 65 ms
16,688 KB
testcase_24 AC 64 ms
16,324 KB
testcase_25 AC 64 ms
16,956 KB
testcase_26 AC 58 ms
17,000 KB
testcase_27 AC 63 ms
16,324 KB
testcase_28 AC 61 ms
16,240 KB
testcase_29 AC 61 ms
17,028 KB
testcase_30 AC 62 ms
17,276 KB
testcase_31 AC 67 ms
17,704 KB
testcase_32 AC 68 ms
18,036 KB
testcase_33 AC 79 ms
20,540 KB
testcase_34 AC 83 ms
22,416 KB
testcase_35 AC 89 ms
21,724 KB
testcase_36 AC 91 ms
25,532 KB
testcase_37 AC 88 ms
23,668 KB
testcase_38 AC 75 ms
23,232 KB
testcase_39 AC 74 ms
23,232 KB
testcase_40 AC 81 ms
25,988 KB
testcase_41 AC 85 ms
22,896 KB
testcase_42 AC 83 ms
26,396 KB
testcase_43 AC 18 ms
14,140 KB
testcase_44 AC 19 ms
16,704 KB
testcase_45 AC 22 ms
16,348 KB
testcase_46 AC 20 ms
14,916 KB
testcase_47 AC 16 ms
14,492 KB
testcase_48 AC 21 ms
16,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

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

void f1(ll i,ll p){
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f1(j,i);
			d[i]+=b[j];
		}
	}
	b[i]=a[i]*(d[i]+1);
}

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

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