結果

問題 No.402 最も海から遠い場所
ユーザー tailstails
提出日時 2016-07-23 00:32:32
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 126 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 48,028 KB
最終ジャッジ日時 2024-04-24 05:27:40
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,392 KB
testcase_01 AC 7 ms
6,016 KB
testcase_02 AC 6 ms
6,016 KB
testcase_03 AC 6 ms
5,888 KB
testcase_04 AC 6 ms
5,888 KB
testcase_05 AC 6 ms
5,888 KB
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
6,016 KB
testcase_10 AC 6 ms
5,888 KB
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 7 ms
5,888 KB
testcase_13 AC 6 ms
6,144 KB
testcase_14 AC 6 ms
5,888 KB
testcase_15 AC 7 ms
6,656 KB
testcase_16 AC 9 ms
7,200 KB
testcase_17 AC 33 ms
22,784 KB
testcase_18 AC 987 ms
41,084 KB
testcase_19 AC 41 ms
32,276 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){$_&=substr$s,$i}
}
print$n
0