結果

問題 No.92 逃走経路
ユーザー %20%20
提出日時 2018-01-12 01:49:04
言語 Perl
(5.38.2)
結果
AC  
実行時間 3,900 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-06-06 05:43:40
合計ジャッジ時間 11,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,900 ms
7,808 KB
testcase_01 AC 7 ms
6,816 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 12 ms
7,808 KB
testcase_06 AC 86 ms
7,680 KB
testcase_07 AC 89 ms
7,808 KB
testcase_08 AC 11 ms
7,168 KB
testcase_09 AC 58 ms
7,168 KB
testcase_10 AC 34 ms
7,680 KB
testcase_11 AC 41 ms
7,808 KB
testcase_12 AC 61 ms
7,808 KB
testcase_13 AC 31 ms
7,168 KB
testcase_14 AC 1,121 ms
7,040 KB
testcase_15 AC 77 ms
7,168 KB
testcase_16 AC 126 ms
7,296 KB
testcase_17 AC 174 ms
7,680 KB
testcase_18 AC 137 ms
7,680 KB
testcase_19 AC 124 ms
7,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::M" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($N,$M,$K)=glob<>;
@_=<>;
@d=sort{1}glob pop@_;
/ .* /,push(@{$`},[$&+0,$']),push(@{$&+0},[$`,$'])for@_;
sub f{
	my($i,$j)=@_;
	$j==$K&&return 1;
	@$_[1]==$d[$j]&&f(@$_[0],$j+1)&&return 1for@$i;
	0
}
@g=grep{f$_,0}1..$N;
print@g."\n@g"
0