結果

問題 No.116 門松列(1)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:57:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 75,572 KB
実行使用メモリ 56,304 KB
最終ジャッジ日時 2024-09-13 11:22:32
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 133 ms
54,144 KB
testcase_05 AC 131 ms
53,944 KB
testcase_06 AC 132 ms
54,096 KB
testcase_07 AC 133 ms
53,952 KB
testcase_08 AC 132 ms
54,028 KB
testcase_09 AC 132 ms
53,824 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 143 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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 ans = 0;
		for (int i=0; i<n-2; i++) {
			if (ar[0]!=ar[1] && ar[1]!=ar[2] && ar[0]!=ar[2]) {
				if ((ar[0]<ar[1]&&ar[1]>ar[2]) || (ar[0]>ar[1]&&ar[1]<ar[2])) {
					ans++;
				}
			}
		}
		System.out.println(ans);
		
	}
}
0