結果

問題 No.602 隠されていたゲーム2
ユーザー tailstails
提出日時 2017-12-02 00:40:04
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 35,684 KB
最終ジャッジ日時 2024-05-06 00:23:32
合計ジャッジ時間 3,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,888 KB
testcase_01 AC 8 ms
5,888 KB
testcase_02 AC 8 ms
6,144 KB
testcase_03 WA -
testcase_04 AC 8 ms
5,888 KB
testcase_05 WA -
testcase_06 AC 9 ms
6,016 KB
testcase_07 AC 8 ms
5,888 KB
testcase_08 AC 13 ms
6,016 KB
testcase_09 WA -
testcase_10 AC 8 ms
6,016 KB
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 6 ms
6,016 KB
testcase_13 AC 6 ms
6,016 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 114 ms
14,324 KB
testcase_18 AC 291 ms
28,016 KB
testcase_19 AC 350 ms
33,292 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
@d=sort{$b-$a}glob<>;
($x,$y)=glob<>;

if($x==0&&$y==0){
	print 0;
	exit;
}

$z=abs($x)+abs($y);
if(grep$z==$_,@d){
	print 1;
	exit;
}

($d0)=@d0=grep{$_%2==0}@d;
($d1)=@d1=grep{$_%2==1}@d;

if( $z%2 ) {
	if( $z<=$d0*2 || $z<=$d1*2 ) {
		print 2;
		exit;
	}
} else {
	if( grep{$z>=abs($d1-$_) && $z<=$d1+$_}@d0 ) {
		print 2;
		exit;
	}
	if( grep{$z>=abs($d0-$_) && $z<=$d0+$_}@d1 ) {
		print 2;
		exit;
	}
}

print -1;
0