結果

問題 No.116 門松列(1)
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:54:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-25 01:42:09
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,552 KB
testcase_01 AC 135 ms
41,312 KB
testcase_02 AC 135 ms
41,360 KB
testcase_03 AC 121 ms
40,320 KB
testcase_04 AC 137 ms
41,364 KB
testcase_05 AC 137 ms
41,236 KB
testcase_06 AC 133 ms
41,188 KB
testcase_07 AC 132 ms
41,360 KB
testcase_08 AC 136 ms
41,400 KB
testcase_09 AC 133 ms
41,112 KB
testcase_10 AC 136 ms
41,484 KB
testcase_11 AC 137 ms
41,144 KB
testcase_12 AC 141 ms
41,216 KB
testcase_13 AC 133 ms
41,232 KB
testcase_14 AC 141 ms
41,600 KB
testcase_15 AC 132 ms
41,112 KB
testcase_16 AC 139 ms
41,316 KB
testcase_17 AC 140 ms
41,144 KB
testcase_18 AC 138 ms
41,600 KB
testcase_19 AC 131 ms
41,084 KB
testcase_20 AC 143 ms
41,276 KB
testcase_21 AC 140 ms
41,364 KB
testcase_22 AC 139 ms
41,648 KB
testcase_23 AC 143 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no116{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,i,s=0,a[]=new int[100];
		n=stdIn.nextInt();
		for(i=0;i<n;i++) a[i]=stdIn.nextInt();
		for(i=0;i<n-2;i++) if((a[i]<a[i+1]&&a[i+1]>a[i+2]||a[i]>a[i+1]&&a[i+1]<a[i+2])&&a[i]!=a[i+2]) s++;
		System.out.print(s);
	}
}
0