結果

問題 No.116 門松列(1)
ユーザー abcabc
提出日時 2016-11-05 12:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 2,428 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-06-25 01:24:55
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,608 KB
testcase_01 AC 142 ms
40,476 KB
testcase_02 AC 152 ms
41,256 KB
testcase_03 AC 149 ms
41,212 KB
testcase_04 AC 138 ms
41,516 KB
testcase_05 AC 136 ms
41,488 KB
testcase_06 AC 136 ms
41,140 KB
testcase_07 AC 136 ms
41,448 KB
testcase_08 AC 138 ms
41,652 KB
testcase_09 AC 142 ms
41,184 KB
testcase_10 AC 143 ms
41,340 KB
testcase_11 AC 139 ms
41,128 KB
testcase_12 AC 147 ms
41,676 KB
testcase_13 AC 139 ms
41,420 KB
testcase_14 AC 148 ms
41,640 KB
testcase_15 AC 139 ms
41,384 KB
testcase_16 AC 149 ms
41,600 KB
testcase_17 AC 141 ms
41,064 KB
testcase_18 AC 149 ms
41,600 KB
testcase_19 AC 136 ms
41,000 KB
testcase_20 AC 144 ms
41,352 KB
testcase_21 AC 145 ms
41,372 KB
testcase_22 AC 137 ms
41,132 KB
testcase_23 AC 151 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numBamboo = sc.nextInt();

        int[] bamboos = new int[numBamboo];

        int kadomatsuCount = 0;

        for (int i = 0; i < numBamboo; i++) {
            bamboos[i] = sc.nextInt();
        }

        int first = bamboos[0];
        int middle = bamboos[1];

        for (int i = 2; i < numBamboo; i++) {

            int last = bamboos[i];

            if (((first < middle && last < middle) || (middle < first && middle < last))
                    && first != last) {
                kadomatsuCount++;
            }

            first = middle;
            middle = last;

        }

        System.out.println(kadomatsuCount);

    }

}
0