結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 WA -
testcase_04 AC 6 ms
6,016 KB
testcase_05 WA -
testcase_06 AC 6 ms
5,888 KB
testcase_07 AC 6 ms
5,888 KB
testcase_08 AC 6 ms
5,888 KB
testcase_09 AC 6 ms
5,888 KB
testcase_10 AC 6 ms
6,016 KB
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 6 ms
5,888 KB
testcase_13 AC 6 ms
6,016 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 105 ms
14,056 KB
testcase_18 AC 273 ms
28,036 KB
testcase_19 AC 340 ms
33,144 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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<=$e0*2 || $z<=$e1*2 : $z<=$e1+$e2 ) {
	print 2;
	exit;
}

print -1;
0