結果
問題 | No.116 門松列(1) |
ユーザー | mitsuo |
提出日時 | 2016-05-05 00:18:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 898 bytes |
コンパイル時間 | 2,468 ms |
コンパイル使用メモリ | 86,124 KB |
実行使用メモリ | 57,128 KB |
最終ジャッジ日時 | 2024-10-05 07:11:13 |
合計ジャッジ時間 | 6,881 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = new String[2]; int i = 0; while (sc.hasNext()) { input[i] = sc.nextLine(); i++; } System.out.println(solve(input)); sc.close(); } public static int solve(String[] in) { int N = Integer.valueOf(in[0]); List<Integer> as = new ArrayList<>(); String[] ss = in[1].split(" "); for (int i = 0; i < N; i++) { as.add(Integer.valueOf(ss[i])); } int count = 0; for (int i = 0; i < N - 2; i++) { int a = as.get(i); int b = as.get(i + 1); int c = as.get(i + 2); System.out.println(a + " " + b + " " + c); if ((a != b && b != c && c != a) && ((b < a && b < c) || (c < b && a < b))) { System.out.println("OK"); count++; } } return count; } }