結果

問題 No.116 門松列(1)
ユーザー GrenacheGrenache
提出日時 2015-09-23 20:22:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 77,028 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-25 01:10:58
合計ジャッジ時間 7,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,244 KB
testcase_01 AC 124 ms
54,104 KB
testcase_02 AC 127 ms
53,888 KB
testcase_03 AC 123 ms
54,124 KB
testcase_04 AC 112 ms
53,032 KB
testcase_05 AC 128 ms
54,200 KB
testcase_06 AC 128 ms
53,996 KB
testcase_07 AC 124 ms
54,108 KB
testcase_08 AC 126 ms
54,148 KB
testcase_09 AC 115 ms
52,908 KB
testcase_10 AC 129 ms
53,980 KB
testcase_11 AC 127 ms
53,996 KB
testcase_12 AC 135 ms
54,184 KB
testcase_13 AC 133 ms
54,096 KB
testcase_14 AC 138 ms
54,032 KB
testcase_15 AC 130 ms
54,204 KB
testcase_16 AC 137 ms
54,032 KB
testcase_17 AC 129 ms
53,948 KB
testcase_18 AC 134 ms
54,076 KB
testcase_19 AC 129 ms
53,968 KB
testcase_20 AC 136 ms
54,292 KB
testcase_21 AC 137 ms
54,108 KB
testcase_22 AC 128 ms
54,120 KB
testcase_23 AC 136 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder116 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        }

        int ret = 0;
        for (int i = 1; i <= n - 2; i++) {
        	if (isKadomatu(a, i)) {
        		ret++;
        	}
        }
        
        System.out.println(ret);
        
        sc.close();
    }

	private static boolean isKadomatu(int[] a, int i) {
		if (a[i - 1] == a[i] || a[i] == a[i + 1] || a[i - 1] == a[i + 1]) {
			return false;
		}
		if (a[i] > a[i - 1] && a[i] > a[i + 1]) {
			return true;
		}
		if (a[i] < a[i - 1] && a[i] < a[i + 1]) {
			return true;
		}
		
		return false;
	}
}
0