結果

問題 No.2815 Smaller than all
ユーザー highlighterhighlighter
提出日時 2024-07-04 02:00:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 60,184 KB
最終ジャッジ日時 2024-08-06 23:01:28
合計ジャッジ時間 25,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,332 KB
testcase_01 AC 129 ms
41,448 KB
testcase_02 AC 334 ms
48,160 KB
testcase_03 AC 297 ms
48,088 KB
testcase_04 AC 681 ms
52,044 KB
testcase_05 AC 122 ms
41,428 KB
testcase_06 AC 107 ms
41,476 KB
testcase_07 AC 121 ms
41,072 KB
testcase_08 AC 727 ms
58,284 KB
testcase_09 AC 668 ms
59,012 KB
testcase_10 AC 650 ms
58,456 KB
testcase_11 AC 719 ms
60,184 KB
testcase_12 AC 760 ms
58,028 KB
testcase_13 AC 686 ms
58,892 KB
testcase_14 AC 717 ms
58,512 KB
testcase_15 AC 700 ms
58,636 KB
testcase_16 AC 768 ms
58,560 KB
testcase_17 AC 703 ms
58,668 KB
testcase_18 AC 805 ms
58,660 KB
testcase_19 AC 714 ms
53,728 KB
testcase_20 AC 755 ms
54,256 KB
testcase_21 AC 715 ms
58,720 KB
testcase_22 AC 781 ms
58,868 KB
testcase_23 AC 870 ms
58,464 KB
testcase_24 AC 770 ms
52,932 KB
testcase_25 AC 741 ms
58,556 KB
testcase_26 AC 719 ms
53,016 KB
testcase_27 AC 675 ms
50,904 KB
testcase_28 AC 780 ms
58,720 KB
testcase_29 AC 731 ms
51,124 KB
testcase_30 AC 701 ms
57,400 KB
testcase_31 AC 763 ms
58,620 KB
testcase_32 AC 120 ms
41,324 KB
testcase_33 AC 739 ms
58,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Main{
	public static void main(String[]g){
		var sc=new java.util.Scanner(System.in);
		int N=sc.nextInt();
		int[] A=new int[N];
		for(int i=0;i<N;i++)A[i]=sc.nextInt();
		int r=N;
		for(int i=1;i<N;i++){
			if(A[i]>A[i-1]){
				r=i;
				break;
			}
		}
		int ans=0;
		for(int i=r-1;i>=0;i--){
			if(A[i]==A[r-1])ans++;
			else break;
		}
		System.out.println(ans);
	}
}
0