結果

問題 No.116 門松列(1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-23 06:38:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-06-25 01:30:00
合計ジャッジ時間 5,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,224 KB
testcase_01 AC 127 ms
53,848 KB
testcase_02 AC 124 ms
54,280 KB
testcase_03 AC 124 ms
54,060 KB
testcase_04 AC 124 ms
53,988 KB
testcase_05 AC 126 ms
54,312 KB
testcase_06 AC 126 ms
53,820 KB
testcase_07 AC 127 ms
41,516 KB
testcase_08 AC 123 ms
41,464 KB
testcase_09 AC 113 ms
41,432 KB
testcase_10 AC 129 ms
41,400 KB
testcase_11 AC 129 ms
41,380 KB
testcase_12 AC 135 ms
41,328 KB
testcase_13 AC 131 ms
41,420 KB
testcase_14 AC 135 ms
41,496 KB
testcase_15 AC 127 ms
41,220 KB
testcase_16 AC 132 ms
41,712 KB
testcase_17 AC 128 ms
41,212 KB
testcase_18 AC 133 ms
41,768 KB
testcase_19 AC 126 ms
41,376 KB
testcase_20 AC 135 ms
41,188 KB
testcase_21 AC 132 ms
41,400 KB
testcase_22 AC 126 ms
41,444 KB
testcase_23 AC 143 ms
41,404 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[] a = new int[N];
    for(int i = 0; i < N; i++) {
      a[i] = sc.nextInt();
    }
    int ans = 0;
    for(int i = 0; i < N - 2; i++) {
      if(a[i] != a[i + 1] && a[i] != a[i + 2] && a[i + 1] != a[i + 2]) {
        int max = Math.max(a[i], Math.max(a[i + 1], a[i + 2]));
        int min = Math.min(a[i], Math.min(a[i + 1], a[i + 2]));
        if(a[i + 1] == max || a[i + 1] == min) ans++;
      }
    }
    System.out.println(ans);
  }
}
0