結果

問題 No.116 門松列(1)
ユーザー jimanojimano
提出日時 2018-01-22 22:58:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 3,691 ms
コンパイル使用メモリ 78,192 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-06-25 01:36:17
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,020 KB
testcase_01 AC 52 ms
37,140 KB
testcase_02 AC 51 ms
36,940 KB
testcase_03 AC 51 ms
37,260 KB
testcase_04 AC 52 ms
37,136 KB
testcase_05 AC 54 ms
37,124 KB
testcase_06 AC 56 ms
37,376 KB
testcase_07 AC 53 ms
37,280 KB
testcase_08 AC 52 ms
37,204 KB
testcase_09 AC 51 ms
36,928 KB
testcase_10 AC 53 ms
37,136 KB
testcase_11 AC 53 ms
37,292 KB
testcase_12 AC 51 ms
36,712 KB
testcase_13 AC 53 ms
37,296 KB
testcase_14 AC 52 ms
37,004 KB
testcase_15 AC 53 ms
37,148 KB
testcase_16 AC 52 ms
36,976 KB
testcase_17 AC 53 ms
37,076 KB
testcase_18 AC 54 ms
37,040 KB
testcase_19 AC 53 ms
37,148 KB
testcase_20 AC 53 ms
37,124 KB
testcase_21 AC 52 ms
37,116 KB
testcase_22 AC 52 ms
37,140 KB
testcase_23 AC 52 ms
37,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0116 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int N = Integer.parseInt(br.readLine());
			String[] str = br.readLine().split(" ");
			int[] matsu = new int[N];
			int cnt = 0;

			for (int i = 0; i < N; i++) {
				matsu[i] = Integer.parseInt(str[i]);
			}

			for (int i = 0; i < N - 2; i++) {
				int[] tmp = { matsu[i], matsu[i + 1], matsu[i + 2] };
				// 門松列?
				cnt = isKadomatsu(tmp) ? cnt + 1 : cnt;
			}
			System.out.println(cnt);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	static boolean isKadomatsu(int[] matsu) {
		int[] tmp = { matsu[0], matsu[1], matsu[2] };
		Arrays.sort(tmp);
		return (tmp[1] != matsu[1]) && 
				(matsu[0] != matsu[1] && matsu[1] != matsu[2] && matsu[0] != matsu[2]);
	}
}
0