結果

問題 No.905 Sorted?
ユーザー %20%20
提出日時 2019-10-11 22:02:32
言語 Perl
(5.38.2)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 39,820 KB
最終ジャッジ日時 2024-05-04 01:39:13
合計ジャッジ時間 6,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 8 ms
6,940 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 17 ms
6,940 KB
testcase_06 AC 13 ms
6,944 KB
testcase_07 AC 36 ms
7,808 KB
testcase_08 AC 317 ms
27,308 KB
testcase_09 AC 242 ms
21,908 KB
testcase_10 AC 439 ms
35,772 KB
testcase_11 AC 360 ms
32,880 KB
testcase_12 AC 349 ms
33,384 KB
testcase_13 AC 489 ms
38,696 KB
testcase_14 AC 398 ms
38,680 KB
testcase_15 AC 369 ms
39,712 KB
testcase_16 AC 358 ms
39,804 KB
testcase_17 AC 461 ms
39,820 KB
testcase_18 AC 352 ms
36,444 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 9 ms
6,944 KB
testcase_22 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$N=<>;
@A=glob<>;
for$i(1..$N-1){
	$f[$i]=$f[$i-1]+($A[$i-1]>$A[$i]);
	$g[$i]=$g[$i-1]+($A[$i-1]<$A[$i]);
}
<>;
for(<>){
	($l,$r)=split;
	print$f[$r]-$f[$l]?0:1,$",$g[$r]-$g[$l]?0:1,$/;
}
0