結果

問題 No.402 最も海から遠い場所
ユーザー tailstails
提出日時 2016-07-23 00:02:34
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 134 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 7,080 KB
実行使用メモリ 48,040 KB
最終ジャッジ日時 2024-11-06 13:41:38
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,820 KB
testcase_01 AC 8 ms
6,820 KB
testcase_02 AC 7 ms
6,816 KB
testcase_03 AC 7 ms
6,816 KB
testcase_04 AC 8 ms
6,816 KB
testcase_05 AC 8 ms
6,816 KB
testcase_06 AC 8 ms
6,820 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 8 ms
6,816 KB
testcase_09 AC 8 ms
6,816 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 7 ms
6,816 KB
testcase_12 AC 8 ms
6,820 KB
testcase_13 AC 8 ms
6,820 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 12 ms
7,120 KB
testcase_17 AC 39 ms
22,760 KB
testcase_18 AC 1,229 ms
41,088 KB
testcase_19 AC 46 ms
41,100 KB
testcase_20 TLE -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::h" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($h,$w,$/)=glob<>;$_=<>;
while(/#/){
	++$n;
	$s=$_;
	for$i(1,2,$w+1,$w+2,$w+3,$w*2+2,$w*2+3,$w*2+4){$s&=substr$_,$i}
	$_=$s;
}
print$n
0