結果

問題 No.116 門松列(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:49:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 4,342 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-06-25 01:23:01
合計ジャッジ時間 8,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,512 KB
testcase_01 AC 131 ms
41,356 KB
testcase_02 AC 133 ms
41,352 KB
testcase_03 AC 129 ms
40,960 KB
testcase_04 AC 125 ms
41,252 KB
testcase_05 AC 129 ms
41,308 KB
testcase_06 AC 133 ms
41,408 KB
testcase_07 AC 134 ms
41,396 KB
testcase_08 AC 116 ms
41,200 KB
testcase_09 AC 117 ms
41,300 KB
testcase_10 AC 138 ms
41,604 KB
testcase_11 AC 134 ms
41,244 KB
testcase_12 AC 134 ms
41,344 KB
testcase_13 AC 132 ms
41,328 KB
testcase_14 AC 141 ms
41,344 KB
testcase_15 AC 135 ms
41,160 KB
testcase_16 AC 139 ms
41,384 KB
testcase_17 AC 135 ms
41,468 KB
testcase_18 AC 135 ms
41,116 KB
testcase_19 AC 128 ms
41,176 KB
testcase_20 AC 136 ms
41,804 KB
testcase_21 AC 137 ms
41,676 KB
testcase_22 AC 129 ms
41,560 KB
testcase_23 AC 141 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), cnt = 0, a, b, c;
		a = sc.nextInt();
		b = sc.nextInt();
		for (int i = 2; i < n; i++) {
			c = sc.nextInt();
			if ((a - b) * (b - c) * (c - a) != 0 && (a - b) * (c - b) > 0) {
				cnt++;
			}
			a = b;
			b = c;
		}
		System.out.println(cnt);
	}
}
0