結果

問題 No.116 門松列(1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:48:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 56,124 KB
最終ジャッジ日時 2024-11-06 13:41:52
合計ジャッジ時間 6,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,156 KB
testcase_01 AC 134 ms
53,884 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 135 ms
53,688 KB
testcase_05 AC 135 ms
54,000 KB
testcase_06 WA -
testcase_07 AC 134 ms
56,124 KB
testcase_08 AC 136 ms
54,136 KB
testcase_09 AC 135 ms
53,764 KB
testcase_10 WA -
testcase_11 AC 137 ms
53,944 KB
testcase_12 WA -
testcase_13 AC 139 ms
54,108 KB
testcase_14 AC 144 ms
53,980 KB
testcase_15 WA -
testcase_16 AC 139 ms
53,740 KB
testcase_17 AC 138 ms
53,872 KB
testcase_18 WA -
testcase_19 AC 136 ms
54,192 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 146 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
		}
		
		int num = 0;
		for (int i=0; i<n-2; i++) {
			int a = ar[i];
			int b = ar[i+1];
			int c = ar[i+2];
			if (a<b && b>c) {num++;}
			else if (a>b && b<c) {num++;}
		}
		
		System.out.println(num);
	}
}
0