結果

問題 No.116 門松列(1)
ユーザー dazydazy
提出日時 2016-09-13 17:04:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-25 01:24:00
合計ジャッジ時間 7,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,292 KB
testcase_01 AC 131 ms
41,368 KB
testcase_02 AC 130 ms
41,416 KB
testcase_03 AC 130 ms
41,212 KB
testcase_04 AC 130 ms
41,168 KB
testcase_05 AC 129 ms
41,108 KB
testcase_06 AC 117 ms
39,916 KB
testcase_07 AC 132 ms
41,280 KB
testcase_08 AC 131 ms
41,132 KB
testcase_09 AC 129 ms
41,180 KB
testcase_10 AC 143 ms
41,352 KB
testcase_11 AC 132 ms
41,136 KB
testcase_12 AC 137 ms
41,240 KB
testcase_13 AC 135 ms
40,944 KB
testcase_14 AC 141 ms
41,336 KB
testcase_15 AC 131 ms
40,920 KB
testcase_16 AC 139 ms
41,152 KB
testcase_17 AC 138 ms
41,316 KB
testcase_18 AC 141 ms
41,512 KB
testcase_19 AC 130 ms
41,256 KB
testcase_20 AC 137 ms
41,472 KB
testcase_21 AC 139 ms
41,468 KB
testcase_22 AC 136 ms
41,460 KB
testcase_23 AC 144 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int tmp2 = scan.nextInt();
        int tmp1 = scan.nextInt();
        int A, count = 0;
        for (int i = 0; i < N - 2; i++) {
            A = scan.nextInt();
            if (tmp2 != A) {
                if (tmp2 < tmp1) {
                    if (tmp1 > A) count++;
                } else if (tmp2 > tmp1) {
                    if (tmp1 < A) count++;
                }
            }
            tmp2 = tmp1;
            tmp1 = A;
        }
        System.out.println(count);
    }
}
0