結果

問題 No.116 門松列(1)
ユーザー YamaKasaYamaKasa
提出日時 2018-04-24 22:41:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 520 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-25 01:40:52
合計ジャッジ時間 6,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,192 KB
testcase_01 AC 126 ms
41,140 KB
testcase_02 AC 128 ms
41,068 KB
testcase_03 AC 131 ms
41,112 KB
testcase_04 AC 131 ms
41,044 KB
testcase_05 AC 130 ms
41,060 KB
testcase_06 AC 129 ms
41,240 KB
testcase_07 AC 133 ms
41,212 KB
testcase_08 AC 132 ms
40,948 KB
testcase_09 AC 120 ms
40,012 KB
testcase_10 AC 138 ms
41,216 KB
testcase_11 AC 133 ms
41,140 KB
testcase_12 AC 140 ms
41,296 KB
testcase_13 AC 132 ms
41,192 KB
testcase_14 AC 138 ms
41,432 KB
testcase_15 AC 135 ms
41,036 KB
testcase_16 AC 143 ms
41,580 KB
testcase_17 AC 139 ms
41,116 KB
testcase_18 AC 141 ms
41,224 KB
testcase_19 AC 130 ms
41,208 KB
testcase_20 AC 138 ms
41,216 KB
testcase_21 AC 140 ms
41,172 KB
testcase_22 AC 134 ms
41,296 KB
testcase_23 AC 139 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		scan.close();
		int ans = 0;
		for(int i = 0; i < N - 2; i++) {
			int a1 = A[i];
			int a2 = A[i + 1];
			int a3 = A[i + 2];
			if(a1 < a2 && a2 > a3 && a1 != a3) {
				ans ++;
			}else if(a1 > a2 && a2 < a3 && a1 != a3) {
				ans ++;
			}
		}
		System.out.println(ans);

	}
}
0