結果

問題 No.871 かえるのうた
ユーザー tailstails
提出日時 2019-08-30 22:24:10
言語 Perl
(5.38.2)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-05-07 16:24:50
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,016 KB
testcase_01 AC 7 ms
5,888 KB
testcase_02 AC 6 ms
5,888 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 7 ms
5,888 KB
testcase_05 AC 7 ms
5,760 KB
testcase_06 AC 7 ms
5,888 KB
testcase_07 AC 7 ms
5,888 KB
testcase_08 AC 18 ms
7,040 KB
testcase_09 AC 22 ms
7,296 KB
testcase_10 AC 10 ms
6,144 KB
testcase_11 AC 13 ms
6,400 KB
testcase_12 AC 98 ms
12,880 KB
testcase_13 AC 27 ms
7,424 KB
testcase_14 AC 477 ms
39,604 KB
testcase_15 AC 494 ms
39,524 KB
testcase_16 AC 534 ms
41,504 KB
testcase_17 AC 472 ms
37,520 KB
testcase_18 AC 85 ms
13,228 KB
testcase_19 AC 596 ms
39,716 KB
testcase_20 AC 62 ms
8,832 KB
testcase_21 AC 229 ms
18,228 KB
testcase_22 AC 7 ms
5,888 KB
testcase_23 AC 7 ms
5,888 KB
testcase_24 AC 7 ms
5,888 KB
testcase_25 AC 16 ms
6,528 KB
testcase_26 AC 48 ms
9,472 KB
testcase_27 AC 69 ms
11,472 KB
testcase_28 AC 6 ms
5,888 KB
testcase_29 AC 283 ms
28,460 KB
testcase_30 AC 489 ms
31,496 KB
testcase_31 AC 24 ms
6,784 KB
testcase_32 AC 467 ms
29,756 KB
testcase_33 AC 680 ms
41,744 KB
testcase_34 AC 147 ms
15,688 KB
testcase_35 AC 347 ms
27,588 KB
testcase_36 AC 480 ms
35,476 KB
testcase_37 AC 274 ms
20,292 KB
testcase_38 AC 640 ms
38,320 KB
testcase_39 AC 593 ms
36,464 KB
testcase_40 AC 297 ms
29,256 KB
testcase_41 AC 7 ms
5,888 KB
testcase_42 AC 252 ms
29,316 KB
testcase_43 AC 7 ms
5,888 KB
testcase_44 AC 8 ms
5,888 KB
testcase_45 AC 15 ms
6,528 KB
testcase_46 AC 8 ms
5,888 KB
testcase_47 AC 7 ms
5,888 KB
testcase_48 AC 7 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use integer;
($n,$k)=glob<>;
@x=glob<>;
@a=glob<>;
--$k;
$l=$x[$k]-$a[$k];
$r=$x[$k]+$a[$k];
$i=$k-1;
$j=$k+1;
while(1){
	if($i>=0 && $x[$i]>=$l){
		$l=$x[$i]-$a[$i] if $l>$x[$i]-$a[$i];
		$r=$x[$i]+$a[$i] if $r<$x[$i]+$a[$i];
		--$i;
	}
	elsif($j<$n && $x[$j]<=$r){
		$l=$x[$j]-$a[$j] if $l>$x[$j]-$a[$j];
		$r=$x[$j]+$a[$j] if $r<$x[$j]+$a[$j];
		++$j;
	}
	else{
		last;
	}
}
print $j-$i-1;
0