結果

問題 No.2790 Athena 3
ユーザー tailstails
提出日時 2024-06-21 21:43:37
言語 Perl
(5.38.2)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 21:43:38
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

sub a{
	my($x1,$y1,$x2,$y2,$x3,$y3)=@_;
	$x2-=$x1;
	$y2-=$y1;
	$x3-=$x1;
	$y3-=$y1;
	abs($x2*$y3-$x3*$y2)/2;
}
($x1,$y1,$x2,$y2,$x3,$y3)=glob<>;
for$a(0..3){
	for$b(0..3){
		for$c(0..3){
			$r=a
				$x1+($a==0)-($a==1),
				$y1+($a==2)-($a==3),
				$x2+($b==0)-($b==1),
				$y2+($b==2)-($b==3),
				$x3+($c==0)-($c==1),
				$y3+($c==2)-($c==3);
			$z=$r if $z<$r;
		}
	}
}
print$z;
0