結果

問題 No.116 門松列(1)
ユーザー tentententen
提出日時 2020-11-10 16:03:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-22 17:33:15
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,464 KB
testcase_01 AC 130 ms
41,164 KB
testcase_02 AC 131 ms
41,384 KB
testcase_03 AC 132 ms
41,508 KB
testcase_04 AC 133 ms
41,300 KB
testcase_05 AC 130 ms
41,388 KB
testcase_06 AC 129 ms
41,300 KB
testcase_07 AC 129 ms
41,472 KB
testcase_08 AC 132 ms
41,588 KB
testcase_09 AC 130 ms
41,164 KB
testcase_10 AC 137 ms
41,264 KB
testcase_11 AC 136 ms
41,156 KB
testcase_12 AC 138 ms
41,624 KB
testcase_13 AC 123 ms
40,140 KB
testcase_14 AC 139 ms
41,408 KB
testcase_15 AC 132 ms
41,312 KB
testcase_16 AC 138 ms
41,136 KB
testcase_17 AC 133 ms
41,372 KB
testcase_18 AC 137 ms
41,064 KB
testcase_19 AC 115 ms
40,064 KB
testcase_20 AC 136 ms
41,324 KB
testcase_21 AC 143 ms
41,484 KB
testcase_22 AC 131 ms
41,164 KB
testcase_23 AC 141 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        int count = 0;
        for (int i = 0; i < n - 2; i++) {
            if (((arr[i] < arr[i + 1] && arr[i + 1] > arr[i + 2]) || (arr[i] > arr[i + 1] && arr[i + 1] < arr[i + 2])) && arr[i] != arr[i + 2]) {
                count++;
            }
        }
        System.out.println(count);
    }
}
0