結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 6 ms
6,016 KB
testcase_03 AC 6 ms
5,760 KB
testcase_04 WA -
testcase_05 AC 7 ms
6,016 KB
testcase_06 AC 6 ms
5,888 KB
testcase_07 AC 7 ms
5,888 KB
testcase_08 WA -
testcase_09 AC 6 ms
5,888 KB
testcase_10 AC 6 ms
6,016 KB
testcase_11 AC 6 ms
6,016 KB
testcase_12 AC 6 ms
6,016 KB
testcase_13 AC 6 ms
5,888 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 94 ms
14,304 KB
testcase_18 AC 253 ms
27,912 KB
testcase_19 AC 331 ms
33,272 KB
testcase_20 WA -
testcase_21 AC 266 ms
35,584 KB
testcase_22 AC 336 ms
33,272 KB
testcase_23 AC 264 ms
32,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::e2" used only once: possible typo at Main.pl line 19.
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;
}

($e0)=grep{$_%2==0}@d;
($e1)=grep{$_%2==1}@d;

if( $z%2 ? $z<=$e1*2 : $z<=$e1+$e2 || $z<=$e0*2 ) {
	print 2;
	exit;
}

print -1;
0