結果

問題 No.1909 Detect from Substrings
ユーザー tailstails
提出日時 2022-04-22 21:22:46
言語 Perl
(5.38.2)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-06-24 02:24:04
合計ジャッジ時間 10,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,016 KB
testcase_01 AC 8 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 8 ms
6,016 KB
testcase_04 AC 15 ms
6,144 KB
testcase_05 AC 61 ms
6,400 KB
testcase_06 AC 70 ms
7,040 KB
testcase_07 AC 74 ms
7,168 KB
testcase_08 AC 243 ms
8,448 KB
testcase_09 AC 158 ms
8,448 KB
testcase_10 AC 127 ms
7,680 KB
testcase_11 AC 96 ms
7,552 KB
testcase_12 AC 133 ms
7,296 KB
testcase_13 AC 283 ms
8,448 KB
testcase_14 AC 326 ms
8,448 KB
testcase_15 AC 243 ms
8,576 KB
testcase_16 AC 204 ms
7,168 KB
testcase_17 AC 182 ms
7,040 KB
testcase_18 AC 179 ms
7,040 KB
testcase_19 AC 181 ms
7,168 KB
testcase_20 AC 179 ms
7,168 KB
testcase_21 AC 263 ms
8,576 KB
testcase_22 AC 354 ms
8,448 KB
testcase_23 AC 196 ms
7,424 KB
testcase_24 AC 208 ms
7,552 KB
testcase_25 AC 191 ms
7,296 KB
testcase_26 AC 332 ms
8,576 KB
testcase_27 AC 285 ms
8,448 KB
testcase_28 AC 264 ms
8,576 KB
testcase_29 AC 434 ms
8,576 KB
testcase_30 AC 428 ms
8,448 KB
testcase_31 AC 434 ms
8,576 KB
testcase_32 AC 432 ms
8,576 KB
testcase_33 AC 397 ms
8,448 KB
testcase_34 AC 433 ms
8,448 KB
testcase_35 AC 423 ms
8,576 KB
testcase_36 AC 428 ms
8,576 KB
testcase_37 AC 420 ms
8,576 KB
testcase_38 AC 434 ms
8,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 18.
Main.pl syntax OK

ソースコード

diff #

sub check{
	for$s(@s){
		$k=0;
		while(substr($t,$k,1) eq substr($s,$k,1)){
			++$k;
		}
		while($k<$m && substr($t,$k+1,1) eq substr($s,$k,1)){
			++$k;
		}
		if($k!=$m){
			return 0;
		}
	}
	return 1;
}


($n,$m)=glob<>;
@s=<>;
while(substr($s[0],$i,1) eq substr($s[1],$i,1)){
	++$i;
}
$j=$m-1;
while(substr($s[0],$j,1) eq substr($s[1],$j,1)){
	--$j;
}
$r+=check($t=substr($s[0],0,$j+1).substr($s[1],$j));
$r+=check($t=substr($s[1],0,$j+1).substr($s[0],$j));
print $r;
0