結果

問題 No.168 ものさし
ユーザー tailstails
提出日時 2015-03-20 00:15:16
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 113,700 KB
最終ジャッジ日時 2024-06-28 23:32:55
合計ジャッジ時間 8,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 3 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
<>=~/ /,$x[$_]=$`+0,$y[$_]=$'+0 for 1..$n;

for$i(1..$n){
	for$j(1..$i-1){
		$d{"$j,$i"}=($x[$i]-$x[$j])**2+($y[$i]-$y[$j])**2;
	}
}

@i=0..$n;

for(sort{$d{$a}<=>$d{$b}}keys%d){
	 /,/;$j=$`+0;$i=$'+0;
	 for(@i){
		$_=$i[$j] if$_==$i[$i];
	 }
	 if($i[$n]==$i[1]){
		print +(sqrt($d{$_})/10+.9999999999|0)*10 ;exit;
	 }
}

0