結果

問題 No.116 門松列(1)
ユーザー spaciaspacia
提出日時 2016-01-04 08:57:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 50,400 KB
最終ジャッジ日時 2024-06-25 01:14:26
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,812 KB
testcase_01 AC 54 ms
49,872 KB
testcase_02 AC 54 ms
50,084 KB
testcase_03 AC 55 ms
50,364 KB
testcase_04 AC 54 ms
50,032 KB
testcase_05 AC 55 ms
49,828 KB
testcase_06 AC 55 ms
49,884 KB
testcase_07 AC 55 ms
49,980 KB
testcase_08 AC 55 ms
50,004 KB
testcase_09 AC 55 ms
50,400 KB
testcase_10 AC 55 ms
49,780 KB
testcase_11 AC 55 ms
50,004 KB
testcase_12 AC 56 ms
49,940 KB
testcase_13 AC 55 ms
50,196 KB
testcase_14 AC 55 ms
50,076 KB
testcase_15 AC 57 ms
49,760 KB
testcase_16 AC 58 ms
50,188 KB
testcase_17 AC 55 ms
50,056 KB
testcase_18 AC 54 ms
50,208 KB
testcase_19 AC 54 ms
50,244 KB
testcase_20 AC 54 ms
50,192 KB
testcase_21 AC 54 ms
49,888 KB
testcase_22 AC 54 ms
49,732 KB
testcase_23 AC 58 ms
50,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean isPd (int a , int b , int c) {
		if (a == b || a == c || b == c) return false;
		return (c < a && a < b) || (b < a && a < c) || (a < c && c < b) || (b < c && c < a);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int[] a = new int[n];
		String[] line = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(line[i]);
		}
		int ans = 0;
		for (int i = 2; i < n; i++) {
			ans = isPd(a[i - 2] , a[i - 1] , a[i]) ? ans + 1 : ans;
		}
		
		out(ans);
		
	}
}
0