結果

問題 No.116 門松列(1)
ユーザー r.suzukir.suzuki
提出日時 2016-01-04 14:34:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 977 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-25 01:13:48
合計ジャッジ時間 7,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,976 KB
testcase_01 AC 131 ms
54,000 KB
testcase_02 AC 132 ms
53,992 KB
testcase_03 AC 131 ms
54,036 KB
testcase_04 AC 132 ms
54,340 KB
testcase_05 AC 137 ms
53,728 KB
testcase_06 AC 132 ms
54,024 KB
testcase_07 AC 132 ms
54,016 KB
testcase_08 AC 132 ms
54,148 KB
testcase_09 AC 124 ms
52,872 KB
testcase_10 AC 137 ms
53,940 KB
testcase_11 AC 136 ms
54,012 KB
testcase_12 AC 142 ms
54,132 KB
testcase_13 AC 133 ms
53,896 KB
testcase_14 AC 142 ms
54,140 KB
testcase_15 AC 133 ms
54,040 KB
testcase_16 AC 140 ms
53,952 KB
testcase_17 AC 134 ms
54,016 KB
testcase_18 AC 139 ms
54,044 KB
testcase_19 AC 129 ms
54,060 KB
testcase_20 AC 139 ms
54,200 KB
testcase_21 AC 140 ms
54,144 KB
testcase_22 AC 135 ms
54,000 KB
testcase_23 AC 141 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_116 {
	static int kadomatsu;

	static void countKadomatsu(int[] array, int i) {
		if (i + 1 >= array.length) {
			return;
		}
		int left = array[i - 1];
		int right = array[i + 1];
		int[] newArray = { array[i - 1], array[i], array[i + 1] };
		for (int j = 0; j < newArray.length - 1; j++) {
			for (int k = j + 1; k < newArray.length; k++) {
				if (newArray[j] > newArray[k]) {
					int tmp = newArray[j];
					newArray[j] = newArray[k];
					newArray[k] = tmp;
				}
			}
		}

		if ((newArray[1] == left || newArray[1] == right)
				&& (newArray[0] != newArray[1] && newArray[1] != newArray[2])) {
			kadomatsu++;
		}
		countKadomatsu(array, ++i);
	}

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int num = sc.nextInt();
		int[] array = new int[num];

		for (int i = 0; i < num; i++) {
			array[i] = sc.nextInt();
		}

		countKadomatsu(array, 1);
		System.out.println(kadomatsu);
		sc.close();

	}

}
0