結果

問題 No.2815 Smaller than all
ユーザー highlighterhighlighter
提出日時 2024-07-04 01:49:27
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 14,118 ms
コンパイル使用メモリ 167,040 KB
実行使用メモリ 209,028 KB
最終ジャッジ日時 2024-07-20 12:35:41
合計ジャッジ時間 18,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,332 KB
testcase_01 AC 55 ms
30,080 KB
testcase_02 AC 60 ms
32,864 KB
testcase_03 AC 60 ms
32,640 KB
testcase_04 AC 86 ms
49,920 KB
testcase_05 AC 55 ms
30,080 KB
testcase_06 AC 56 ms
30,080 KB
testcase_07 AC 56 ms
30,208 KB
testcase_08 AC 105 ms
55,808 KB
testcase_09 AC 106 ms
55,808 KB
testcase_10 AC 105 ms
56,048 KB
testcase_11 AC 104 ms
55,936 KB
testcase_12 AC 105 ms
55,776 KB
testcase_13 AC 103 ms
55,168 KB
testcase_14 AC 105 ms
55,392 KB
testcase_15 AC 104 ms
56,064 KB
testcase_16 AC 104 ms
54,528 KB
testcase_17 AC 101 ms
52,736 KB
testcase_18 AC 103 ms
54,272 KB
testcase_19 AC 104 ms
55,424 KB
testcase_20 AC 100 ms
52,864 KB
testcase_21 AC 104 ms
55,684 KB
testcase_22 AC 104 ms
55,452 KB
testcase_23 AC 101 ms
52,844 KB
testcase_24 AC 103 ms
54,400 KB
testcase_25 AC 104 ms
55,168 KB
testcase_26 AC 101 ms
53,248 KB
testcase_27 AC 102 ms
54,144 KB
testcase_28 AC 103 ms
54,752 KB
testcase_29 AC 104 ms
54,096 KB
testcase_30 AC 105 ms
55,784 KB
testcase_31 AC 105 ms
55,848 KB
testcase_32 AC 56 ms
30,064 KB
testcase_33 AC 93 ms
209,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

int N=int.Parse(Console.ReadLine());
int[] A=Console.ReadLine().Split().Select(int.Parse).ToArray();
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;
}
Console.WriteLine(ans);
0