結果

問題 No.116 門松列(1)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 12:40:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-25 01:37:58
合計ジャッジ時間 7,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
53,972 KB
testcase_01 AC 135 ms
53,788 KB
testcase_02 AC 132 ms
54,276 KB
testcase_03 AC 132 ms
53,812 KB
testcase_04 AC 135 ms
53,776 KB
testcase_05 AC 135 ms
54,212 KB
testcase_06 AC 136 ms
53,916 KB
testcase_07 AC 136 ms
54,024 KB
testcase_08 AC 136 ms
53,864 KB
testcase_09 AC 136 ms
53,896 KB
testcase_10 AC 141 ms
53,976 KB
testcase_11 AC 137 ms
54,108 KB
testcase_12 AC 146 ms
53,872 KB
testcase_13 AC 137 ms
54,116 KB
testcase_14 AC 143 ms
53,792 KB
testcase_15 AC 136 ms
53,972 KB
testcase_16 AC 144 ms
53,940 KB
testcase_17 AC 137 ms
53,904 KB
testcase_18 AC 140 ms
53,920 KB
testcase_19 AC 133 ms
53,868 KB
testcase_20 AC 146 ms
54,292 KB
testcase_21 AC 142 ms
53,932 KB
testcase_22 AC 138 ms
53,832 KB
testcase_23 AC 144 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con116 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int[] A = new int[N];
		for(int i = 0;i < N;i++){
			A[i] = s.nextInt();
		}
		s.close();

		int count = 0;
		for(int i = 0;i < N -2;i++){
			if((A[i] - A[i+1]) * (A[i+2] - A[i+1]) > 0 && A[i] != A[i+2]){
				count++;
			}
		}
		System.out.println(count);

	}

}
0