結果

問題 No.116 門松列(1)
ユーザー mitsuo
提出日時 2016-05-05 00:18:09
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 86,124 KB
実行使用メモリ 57,128 KB
最終ジャッジ日時 2024-10-05 07:11:13
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
	}
}
0