結果

問題 No.116 門松列(1)
ユーザー FVRChanFVRChan
提出日時 2017-09-24 15:55:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 732 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-06-25 01:31:41
合計ジャッジ時間 6,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,092 KB
testcase_01 AC 128 ms
54,184 KB
testcase_02 AC 126 ms
54,256 KB
testcase_03 AC 116 ms
53,136 KB
testcase_04 AC 126 ms
54,032 KB
testcase_05 AC 130 ms
54,236 KB
testcase_06 AC 130 ms
54,208 KB
testcase_07 AC 127 ms
54,280 KB
testcase_08 AC 117 ms
53,008 KB
testcase_09 AC 128 ms
53,976 KB
testcase_10 AC 131 ms
54,296 KB
testcase_11 AC 130 ms
54,080 KB
testcase_12 AC 142 ms
54,132 KB
testcase_13 AC 116 ms
53,128 KB
testcase_14 AC 134 ms
54,216 KB
testcase_15 AC 126 ms
54,328 KB
testcase_16 AC 132 ms
54,192 KB
testcase_17 AC 131 ms
53,968 KB
testcase_18 AC 136 ms
54,012 KB
testcase_19 AC 129 ms
54,120 KB
testcase_20 AC 136 ms
54,148 KB
testcase_21 AC 141 ms
54,240 KB
testcase_22 AC 131 ms
54,316 KB
testcase_23 AC 134 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int n=Integer.parseInt(sc.nextLine());
		int are[]=new int[n];
		for(int i=0;i<n;i++)
			are[i]=sc.nextInt();
		sc.close();
		int counter=0;
		for(int i=0;i<n-2;i++){
			if(JD(are[i],are[i+1],are[i+2]) && JC(are[i],are[i+1],are[i+2])){
				counter++;
			}
		}
		System.out.println(counter);
	}
	private static boolean JC(int a,int b,int c){
		int are[]={a,b,c};
		Arrays.sort(are);
		if(are[1] == a || are[1] == c)return true;
		else return false;
	}
	private static boolean JD(int a,int b,int c){
		if(a==b || a==c || b==c)
			return false;
		else return true;
	}
}
0