結果

問題 No.116 門松列(1)
ユーザー yuki2006yuki2006
提出日時 2015-01-04 21:23:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 823 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-06-25 00:54:39
合計ジャッジ時間 7,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,468 KB
testcase_01 AC 118 ms
40,280 KB
testcase_02 AC 135 ms
41,236 KB
testcase_03 AC 132 ms
41,156 KB
testcase_04 AC 130 ms
41,304 KB
testcase_05 AC 131 ms
41,312 KB
testcase_06 AC 132 ms
41,200 KB
testcase_07 AC 132 ms
41,016 KB
testcase_08 AC 130 ms
40,972 KB
testcase_09 AC 128 ms
41,148 KB
testcase_10 AC 131 ms
41,448 KB
testcase_11 AC 130 ms
41,192 KB
testcase_12 AC 136 ms
41,304 KB
testcase_13 AC 118 ms
40,076 KB
testcase_14 AC 143 ms
41,352 KB
testcase_15 AC 134 ms
41,424 KB
testcase_16 AC 139 ms
41,208 KB
testcase_17 AC 134 ms
41,168 KB
testcase_18 AC 137 ms
41,552 KB
testcase_19 AC 130 ms
41,064 KB
testcase_20 AC 138 ms
41,380 KB
testcase_21 AC 139 ms
41,688 KB
testcase_22 AC 123 ms
40,152 KB
testcase_23 AC 137 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yuki116 {


    public Yuki116() {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int[] A = new int[N];
        for (int i = 0; i < N; i++) {
            A[i] = scanner.nextInt();
        }
        int count = 0;
        for (int i = 0; i < N - 2; i++) {
            int[] B = new int[3];
            for (int j = 0; j < 3; j++) {
                B[j] = A[i + j];
            }
            Arrays.sort(B);
            if (B[0] < B[1] && B[1] < B[2]) {
                if (B[1] == A[i] || B[1] == A[i + 2]) {
                    count++;
                }
            }
        }
        System.out.println(count);
    }

    public static void main(String[] args) {
        Yuki116 hoge = new Yuki116();
    }
}
0