結果

問題 No.1588 Connection
ユーザー tailstails
提出日時 2021-07-09 16:12:58
言語 Perl
(5.38.2)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 25,220 KB
平均クエリ数 564.00
最終ジャッジ日時 2024-07-17 12:57:28
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,836 KB
testcase_01 AC 26 ms
25,220 KB
testcase_02 AC 26 ms
24,836 KB
testcase_03 AC 25 ms
24,452 KB
testcase_04 AC 26 ms
24,836 KB
testcase_05 AC 25 ms
24,964 KB
testcase_06 AC 27 ms
24,964 KB
testcase_07 AC 25 ms
24,580 KB
testcase_08 AC 28 ms
24,964 KB
testcase_09 AC 29 ms
25,220 KB
testcase_10 AC 29 ms
24,836 KB
testcase_11 AC 29 ms
24,580 KB
testcase_12 AC 67 ms
24,836 KB
testcase_13 AC 68 ms
24,580 KB
testcase_14 AC 25 ms
24,964 KB
testcase_15 AC 26 ms
25,220 KB
testcase_16 AC 26 ms
24,836 KB
testcase_17 AC 26 ms
24,836 KB
testcase_18 AC 28 ms
24,836 KB
testcase_19 AC 26 ms
24,836 KB
testcase_20 AC 27 ms
25,220 KB
testcase_21 AC 111 ms
24,836 KB
testcase_22 AC 110 ms
24,836 KB
testcase_23 AC 60 ms
24,796 KB
testcase_24 AC 45 ms
24,836 KB
testcase_25 AC 70 ms
24,580 KB
testcase_26 AC 67 ms
24,580 KB
testcase_27 AC 42 ms
25,220 KB
testcase_28 AC 38 ms
24,964 KB
testcase_29 AC 115 ms
25,220 KB
testcase_30 AC 114 ms
24,836 KB
testcase_31 AC 25 ms
25,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Possible precedence problem on bitwise & operator at Main.pl line 3.
Possible precedence problem on bitwise & operator at Main.pl line 3.
Possible precedence problem on bitwise & operator at Main.pl line 3.
Main.pl syntax OK

ソースコード

diff #

sub enq{
	my($y,$x)=@_;
	if($y>0&$y<=$n&$x>0&$x<=$n&&!$$y[$x]++){
		print"$y $x\n";
		push@s,[$y,$x]if<>=~B;
	}
}
$|=1;
$n+=<>;
enq(1,1);
while($_=pop@s){
	($y,$x)=@$_;
	enq($y+1,$x);
	enq($y,$x+1);
	enq($y,$x-1);
	enq($y-1,$x);
}
print$$n[$n]?Yes:No,$/;
0