結果
問題 | No.116 門松列(1) |
ユーザー | rf141 |
提出日時 | 2015-08-10 04:22:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 3,203 ms |
コンパイル使用メモリ | 74,904 KB |
実行使用メモリ | 54,588 KB |
最終ジャッジ日時 | 2024-07-18 06:27:51 |
合計ジャッジ時間 | 7,395 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 131 ms
54,380 KB |
testcase_05 | AC | 134 ms
54,420 KB |
testcase_06 | WA | - |
testcase_07 | AC | 134 ms
54,240 KB |
testcase_08 | AC | 136 ms
54,080 KB |
testcase_09 | AC | 129 ms
53,868 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
41,420 KB |
ソースコード
import java.util.*; public class kadomatsu{ public static void main(String... args){ Scanner scan = new Scanner(System.in); int n = scan.nextInt(); int[] k = new int[n]; for(int i = 0; i < n; i++){ k[i] = scan.nextInt(); } System.out.println(search(n,k)); } public static int search(int n,int[] k){ int count=0; for(int i = 0; i < n-2; i++){ int low = k[i]; int middle = k[i+1]; int high = k[i+2]; if((low != middle && middle != high) || (middle < high && middle > low)){ count++; } } return count; } }