結果

問題 No.116 門松列(1)
ユーザー rf141rf141
提出日時 2015-08-10 04:25:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 3,732 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-06-25 01:09:08
合計ジャッジ時間 8,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,012 KB
testcase_01 AC 134 ms
54,156 KB
testcase_02 AC 133 ms
53,988 KB
testcase_03 AC 134 ms
54,100 KB
testcase_04 AC 138 ms
54,112 KB
testcase_05 AC 136 ms
54,004 KB
testcase_06 AC 133 ms
54,128 KB
testcase_07 AC 132 ms
54,328 KB
testcase_08 AC 134 ms
53,876 KB
testcase_09 AC 134 ms
54,224 KB
testcase_10 AC 141 ms
54,108 KB
testcase_11 AC 146 ms
54,116 KB
testcase_12 AC 154 ms
54,052 KB
testcase_13 AC 137 ms
54,112 KB
testcase_14 AC 143 ms
54,120 KB
testcase_15 AC 132 ms
53,868 KB
testcase_16 AC 140 ms
54,316 KB
testcase_17 AC 141 ms
53,892 KB
testcase_18 AC 143 ms
53,960 KB
testcase_19 AC 131 ms
53,936 KB
testcase_20 AC 147 ms
53,968 KB
testcase_21 AC 146 ms
53,740 KB
testcase_22 AC 135 ms
54,068 KB
testcase_23 AC 154 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class kadomatsu{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int[] k = new int[n];
		for(int i = 0; i < n; i++){
			k[i] = scan.nextInt();
		}
		System.out.println(search(n,k));
	}
	public static int search(int n,int[] k){
		int count=0;
		for(int i = 0; i < n-2; i++){
			int low = k[i];
			int middle = k[i+1];
			int high = k[i+2];
			if(low!=high){
				if(middle > low && middle > high){
					count++;
				}else if(low > middle && middle < high){
					count++;
				}
			}
		}
		return count;
	}
}
0