結果

問題 No.905 Sorted?
ユーザー %20%20
提出日時 2019-10-11 22:02:32
言語 Perl
(5.38.2)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-11-25 07:29:29
合計ジャッジ時間 5,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,820 KB
testcase_01 AC 7 ms
6,820 KB
testcase_02 AC 7 ms
6,816 KB
testcase_03 AC 7 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 17 ms
6,820 KB
testcase_06 AC 12 ms
6,820 KB
testcase_07 AC 34 ms
8,064 KB
testcase_08 AC 258 ms
27,564 KB
testcase_09 AC 200 ms
22,032 KB
testcase_10 AC 360 ms
35,900 KB
testcase_11 AC 301 ms
33,012 KB
testcase_12 AC 285 ms
33,384 KB
testcase_13 AC 416 ms
38,692 KB
testcase_14 AC 334 ms
38,808 KB
testcase_15 AC 324 ms
39,840 KB
testcase_16 AC 320 ms
40,064 KB
testcase_17 AC 396 ms
40,028 KB
testcase_18 AC 300 ms
36,440 KB
testcase_19 AC 7 ms
6,816 KB
testcase_20 AC 7 ms
6,816 KB
testcase_21 AC 6 ms
6,820 KB
testcase_22 AC 6 ms
6,820 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