結果

問題 No.872 All Tree Path
ユーザー tailstails
提出日時 2019-08-30 22:49:29
言語 Perl
(5.38.2)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 254 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 516,992 KB
最終ジャッジ日時 2024-11-22 01:50:57
合計ジャッジ時間 23,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,554 ms
233,088 KB
testcase_01 AC 2,583 ms
232,832 KB
testcase_02 AC 2,587 ms
233,088 KB
testcase_03 MLE -
testcase_04 AC 7 ms
5,760 KB
testcase_05 AC 2,573 ms
232,832 KB
testcase_06 AC 2,539 ms
233,088 KB
testcase_07 AC 2,534 ms
232,832 KB
testcase_08 AC 231 ms
28,288 KB
testcase_09 AC 231 ms
28,416 KB
testcase_10 AC 231 ms
28,416 KB
testcase_11 AC 233 ms
28,288 KB
testcase_12 AC 233 ms
28,416 KB
testcase_13 AC 8 ms
6,816 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 8 ms
6,820 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 8 ms
6,816 KB
testcase_18 AC 8 ms
6,816 KB
testcase_19 AC 7 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
for(<>){
	($u,$v,$w)=glob<>;
	--$u;
	--$v;
	push@$u,[$v,$w];
	push@$v,[$u,$w];
}
sub f{
	my($x,$y)=@_;
	$vis[$x]=1;
	for(@$x){
		my($z,$w)=@$_;
		if(!$vis[$z]){
			my$y1=f($z);
			$a+=$w*$y1*($n-$y1)*2;
			$y+=$y1;
		}
	}
	$y+1;
}
f(0);
print $a;
0