結果

問題 No.92 逃走経路
ユーザー %20%20
提出日時 2018-01-12 03:26:17
言語 Perl
(5.38.2)
結果
AC  
実行時間 447 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-06 05:55:44
合計ジャッジ時間 3,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
11,136 KB
testcase_01 AC 7 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 7 ms
5,888 KB
testcase_05 AC 441 ms
6,940 KB
testcase_06 AC 13 ms
7,424 KB
testcase_07 AC 13 ms
7,424 KB
testcase_08 AC 10 ms
6,912 KB
testcase_09 AC 41 ms
9,472 KB
testcase_10 AC 430 ms
8,320 KB
testcase_11 AC 393 ms
8,704 KB
testcase_12 AC 447 ms
9,984 KB
testcase_13 AC 26 ms
8,064 KB
testcase_14 AC 47 ms
10,112 KB
testcase_15 AC 54 ms
10,112 KB
testcase_16 AC 54 ms
10,496 KB
testcase_17 AC 56 ms
10,880 KB
testcase_18 AC 33 ms
8,576 KB
testcase_19 AC 23 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=glob pop@_;
/ .* /,push@{$'+0},[$`,$&],[$&,$`]for@_;
@g=[0,(1)x$N];
for(@d){
	for(@$_){
		$g[$i+1][@$_[1]]|=$g[$i][@$_[0]]
	}
	++$i
}
@g=grep@{$g[$K]}[$_],1..$N;
print@g."\n@g"
0