結果

問題 No.2815 Smaller than all
ユーザー highlighterhighlighter
提出日時 2024-07-04 01:40:35
言語 PHP
(8.3.4)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 2,958 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 46,776 KB
最終ジャッジ日時 2024-07-20 12:35:22
合計ジャッジ時間 7,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
32,276 KB
testcase_01 AC 41 ms
32,276 KB
testcase_02 AC 42 ms
34,360 KB
testcase_03 AC 41 ms
34,360 KB
testcase_04 AC 47 ms
44,348 KB
testcase_05 AC 40 ms
32,212 KB
testcase_06 AC 40 ms
32,276 KB
testcase_07 AC 41 ms
32,400 KB
testcase_08 AC 86 ms
46,648 KB
testcase_09 AC 86 ms
46,652 KB
testcase_10 AC 86 ms
46,520 KB
testcase_11 AC 86 ms
46,652 KB
testcase_12 AC 68 ms
46,652 KB
testcase_13 AC 70 ms
44,600 KB
testcase_14 AC 68 ms
44,732 KB
testcase_15 AC 70 ms
46,652 KB
testcase_16 AC 67 ms
44,472 KB
testcase_17 AC 72 ms
44,604 KB
testcase_18 AC 70 ms
44,596 KB
testcase_19 AC 55 ms
44,604 KB
testcase_20 AC 74 ms
44,728 KB
testcase_21 AC 69 ms
46,652 KB
testcase_22 AC 64 ms
44,604 KB
testcase_23 AC 70 ms
44,604 KB
testcase_24 AC 61 ms
44,600 KB
testcase_25 AC 70 ms
44,600 KB
testcase_26 AC 73 ms
44,604 KB
testcase_27 AC 67 ms
44,600 KB
testcase_28 AC 68 ms
44,600 KB
testcase_29 AC 65 ms
44,472 KB
testcase_30 AC 67 ms
46,776 KB
testcase_31 AC 66 ms
46,648 KB
testcase_32 AC 40 ms
32,404 KB
testcase_33 AC 49 ms
46,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	fscanf(STDIN,"%d",$n);
	$a=explode(" ",fgets(STDIN));
	$r=$n;
	for($i=1;$i<$n;$i++){
		if($a[$i]>$a[$i-1]){
			$r=$i;
			break;
		}
	}
	$ans=0;
	for($i=$r-1;$i>=0;$i--){
		if($a[$i]==$a[$r-1])$ans++;
		else break;
	}
	echo $ans;
0