結果

問題 No.116 門松列(1)
ユーザー tentententen
提出日時 2020-11-10 15:56:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-07-22 17:32:29
合計ジャッジ時間 5,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,672 KB
testcase_01 AC 107 ms
41,004 KB
testcase_02 AC 109 ms
41,180 KB
testcase_03 WA -
testcase_04 AC 109 ms
41,468 KB
testcase_05 AC 112 ms
40,908 KB
testcase_06 WA -
testcase_07 AC 94 ms
39,668 KB
testcase_08 AC 107 ms
41,064 KB
testcase_09 AC 98 ms
40,256 KB
testcase_10 AC 112 ms
41,248 KB
testcase_11 AC 111 ms
41,284 KB
testcase_12 WA -
testcase_13 AC 117 ms
41,180 KB
testcase_14 AC 119 ms
41,584 KB
testcase_15 AC 99 ms
40,304 KB
testcase_16 AC 117 ms
41,392 KB
testcase_17 AC 117 ms
41,124 KB
testcase_18 WA -
testcase_19 AC 108 ms
41,328 KB
testcase_20 AC 118 ms
41,412 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
41,812 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