結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,016 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 6 ms
5,888 KB
testcase_04 AC 6 ms
5,888 KB
testcase_05 AC 6 ms
6,016 KB
testcase_06 AC 6 ms
5,888 KB
testcase_07 AC 6 ms
6,016 KB
testcase_08 AC 6 ms
5,888 KB
testcase_09 AC 7 ms
5,888 KB
testcase_10 AC 7 ms
5,888 KB
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 6 ms
5,888 KB
testcase_13 AC 6 ms
5,888 KB
testcase_14 AC 6 ms
5,888 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 105 ms
14,184 KB
testcase_18 AC 300 ms
27,904 KB
testcase_19 AC 351 ms
33,148 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 374 ms
33,148 KB
testcase_23 AC 305 ms
32,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
}

($e[0])=grep{$_%2==0}@d;
($e[1])=grep{$_%2==1}@d;

if(grep{$zd=abs($z-$_);$e[$zd&1]>=$zd}@d){
	print 2;
	exit;
}

print -1;
0