結果

問題 No.116 門松列(1)
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 20:07:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-06-25 01:27:30
合計ジャッジ時間 5,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,352 KB
testcase_01 AC 122 ms
41,340 KB
testcase_02 AC 123 ms
41,492 KB
testcase_03 AC 128 ms
41,132 KB
testcase_04 AC 126 ms
41,180 KB
testcase_05 AC 126 ms
41,384 KB
testcase_06 AC 129 ms
41,384 KB
testcase_07 AC 130 ms
41,088 KB
testcase_08 AC 130 ms
41,232 KB
testcase_09 AC 128 ms
41,248 KB
testcase_10 AC 133 ms
41,472 KB
testcase_11 AC 129 ms
41,412 KB
testcase_12 AC 132 ms
41,616 KB
testcase_13 AC 132 ms
40,612 KB
testcase_14 AC 137 ms
41,300 KB
testcase_15 AC 128 ms
41,620 KB
testcase_16 AC 136 ms
41,676 KB
testcase_17 AC 129 ms
41,296 KB
testcase_18 AC 132 ms
41,340 KB
testcase_19 AC 127 ms
41,132 KB
testcase_20 AC 137 ms
40,992 KB
testcase_21 AC 132 ms
41,256 KB
testcase_22 AC 129 ms
41,352 KB
testcase_23 AC 139 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		int n=s.nextInt(), in[]=new int[n], res=0;
		for(int i=0; i<n; i++)
			in[i]=s.nextInt();
		for(int i=2; i<n; i++)
			if(isKadomatu(in[i-2],in[i-1],in[i]))
				res++;
		System.out.println(res);
	}

	public static boolean isKadomatu(int l, int c, int r){
		return l!=r&&((l<c&&r<c)||(l>c&&r>c));
	}
}
0