結果

問題 No.116 門松列(1)
ユーザー mitsuomitsuo
提出日時 2016-05-05 00:18:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 822 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-25 01:17:26
合計ジャッジ時間 6,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,064 KB
testcase_01 AC 128 ms
41,104 KB
testcase_02 AC 131 ms
40,980 KB
testcase_03 AC 128 ms
41,456 KB
testcase_04 AC 128 ms
41,124 KB
testcase_05 AC 130 ms
41,104 KB
testcase_06 AC 115 ms
40,032 KB
testcase_07 AC 126 ms
41,132 KB
testcase_08 AC 130 ms
41,368 KB
testcase_09 AC 129 ms
41,316 KB
testcase_10 AC 132 ms
41,116 KB
testcase_11 AC 124 ms
41,108 KB
testcase_12 AC 128 ms
41,192 KB
testcase_13 AC 128 ms
41,012 KB
testcase_14 AC 128 ms
41,196 KB
testcase_15 AC 125 ms
41,348 KB
testcase_16 AC 129 ms
41,116 KB
testcase_17 AC 135 ms
41,216 KB
testcase_18 AC 128 ms
41,152 KB
testcase_19 AC 119 ms
39,924 KB
testcase_20 AC 127 ms
41,328 KB
testcase_21 AC 128 ms
41,232 KB
testcase_22 AC 131 ms
41,212 KB
testcase_23 AC 131 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] input = new String[2];
		int i = 0;
		while (sc.hasNext()) {
			input[i] = sc.nextLine();
			i++;
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(String[] in) {
		int N = Integer.valueOf(in[0]);

		List<Integer> as = new ArrayList<>();

		String[] ss = in[1].split(" ");
		for (int i = 0; i < N; i++) {
			as.add(Integer.valueOf(ss[i]));
		}

		int count = 0;
		for (int i = 0; i < N - 2; i++) {
			int a = as.get(i);
			int b = as.get(i + 1);
			int c = as.get(i + 2);
			if ((a != b && b != c && c != a) && ((b < a && b < c) || (c < b && a < b))) {
				count++;
			}
		}
		return count;
	}
}
0