結果

問題 No.2815 Smaller than all
ユーザー highlighterhighlighter
提出日時 2024-07-04 07:27:33
言語 Perl
(5.38.2)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-07-20 12:35:42
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 5 ms
6,784 KB
testcase_04 AC 23 ms
19,200 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 85 ms
29,184 KB
testcase_09 AC 84 ms
29,184 KB
testcase_10 AC 84 ms
29,184 KB
testcase_11 AC 85 ms
29,184 KB
testcase_12 AC 57 ms
28,672 KB
testcase_13 AC 59 ms
26,880 KB
testcase_14 AC 57 ms
28,544 KB
testcase_15 AC 58 ms
29,056 KB
testcase_16 AC 58 ms
28,160 KB
testcase_17 AC 66 ms
28,544 KB
testcase_18 AC 65 ms
28,288 KB
testcase_19 AC 37 ms
25,216 KB
testcase_20 AC 70 ms
27,904 KB
testcase_21 AC 59 ms
29,056 KB
testcase_22 AC 55 ms
27,904 KB
testcase_23 AC 63 ms
27,264 KB
testcase_24 AC 48 ms
26,496 KB
testcase_25 AC 60 ms
29,056 KB
testcase_26 AC 64 ms
28,160 KB
testcase_27 AC 57 ms
27,520 KB
testcase_28 AC 58 ms
28,288 KB
testcase_29 AC 59 ms
26,880 KB
testcase_30 AC 57 ms
28,288 KB
testcase_31 AC 52 ms
28,288 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 27 ms
24,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

my $N=<STDIN>;
@A=split(/ /,<STDIN>);
my $r=$N;
for(1..$N){
	if($A[$_]>$A[$_-1]){
		$r=$_;
		last;
	}
}
my $ans=0;
for(my $i=$r-1;$i>=0;$i-=1){
	if($A[$i]==$A[$r-1]){
		$ans++;
	}
	else{
		last;
	}
}
print $ans;
0