結果

問題 No.331 CodeRunnerでやれ
ユーザー tailstails
提出日時 2015-12-24 00:36:53
言語 Perl
(5.38.2)
結果
AC  
実行時間 355 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 25,580 KB
平均クエリ数 293.65
最終ジャッジ日時 2024-07-16 22:22:57
合計ジャッジ時間 6,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
25,232 KB
testcase_01 AC 189 ms
24,848 KB
testcase_02 AC 197 ms
25,580 KB
testcase_03 AC 212 ms
25,220 KB
testcase_04 AC 208 ms
25,220 KB
testcase_05 AC 204 ms
24,964 KB
testcase_06 AC 280 ms
25,220 KB
testcase_07 AC 234 ms
24,836 KB
testcase_08 AC 245 ms
25,220 KB
testcase_09 AC 296 ms
25,220 KB
testcase_10 AC 327 ms
24,824 KB
testcase_11 AC 263 ms
24,848 KB
testcase_12 AC 275 ms
25,220 KB
testcase_13 AC 302 ms
25,220 KB
testcase_14 AC 272 ms
24,848 KB
testcase_15 AC 330 ms
25,076 KB
testcase_16 AC 355 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

$|=1;
sub i{$_=<>;/M/&&exit;$_+0}
sub o{print"@_\n"}
while(1){
	$d=$d+1&3,o L while!i;
	$x1=$x+(1,0,-1,0)[$d];
	$y1=$y+(0,1,0,-1)[$d];
	if($m{$x1,$y1}==0||$m{$x1,$y1}==($d^6)){
		$m{$x,$y}=$d^4;
		$x=$x1;$y=$y1;o F;i;
		$d=$d-1&3,o R;
	}else{
		$d=$d+1&3,o L;
	}
}
0