結果

問題 No.905 Sorted?
ユーザー tailstails
提出日時 2019-10-11 22:28:09
言語 Perl
(5.38.2)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 33,824 KB
最終ジャッジ日時 2024-05-04 02:13:35
合計ジャッジ時間 7,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 32 ms
8,448 KB
testcase_08 AC 567 ms
24,056 KB
testcase_09 AC 345 ms
19,396 KB
testcase_10 AC 573 ms
32,000 KB
testcase_11 AC 512 ms
28,108 KB
testcase_12 AC 575 ms
28,612 KB
testcase_13 AC 648 ms
33,792 KB
testcase_14 AC 564 ms
33,792 KB
testcase_15 AC 524 ms
33,732 KB
testcase_16 AC 594 ms
33,816 KB
testcase_17 AC 628 ms
33,824 KB
testcase_18 AC 510 ms
32,512 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Possible precedence problem on bitwise ^ operator at Main.pl line 13.
Possible precedence problem on bitwise ^ operator at Main.pl line 13.
Main.pl syntax OK

ソースコード

diff #

<>;
for(glob<>){
	if($i){
		$u[$i]=$_<$p?$i:$u[$i-1];
		$d[$i]=$_>$p?$i:$d[$i-1];
	}
	$p=$_;
	++$i;
}
<>;
for(<>){
	($l,$r)=glob;
	print $u[$r]>$l^1,$",$d[$r]>$l^1,$/;
}
0