結果

問題 No.116 門松列(1)
ユーザー tsunabittsunabit
提出日時 2018-05-01 03:21:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 2,066 bytes
コンパイル時間 5,001 ms
コンパイル使用メモリ 79,504 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-06-25 01:41:02
合計ジャッジ時間 9,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,304 KB
testcase_01 AC 137 ms
41,092 KB
testcase_02 AC 136 ms
41,076 KB
testcase_03 AC 137 ms
41,576 KB
testcase_04 AC 136 ms
41,500 KB
testcase_05 AC 146 ms
41,104 KB
testcase_06 AC 138 ms
41,404 KB
testcase_07 AC 137 ms
41,112 KB
testcase_08 AC 136 ms
41,080 KB
testcase_09 AC 132 ms
41,000 KB
testcase_10 AC 137 ms
41,248 KB
testcase_11 AC 136 ms
41,060 KB
testcase_12 AC 137 ms
41,196 KB
testcase_13 AC 136 ms
41,044 KB
testcase_14 AC 139 ms
41,252 KB
testcase_15 AC 136 ms
41,300 KB
testcase_16 AC 140 ms
41,252 KB
testcase_17 AC 137 ms
41,052 KB
testcase_18 AC 137 ms
41,072 KB
testcase_19 AC 137 ms
41,080 KB
testcase_20 AC 139 ms
41,384 KB
testcase_21 AC 138 ms
41,520 KB
testcase_22 AC 120 ms
40,284 KB
testcase_23 AC 141 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.Stream;

// ***問題文***
// あけましておめでとうございます。
// 玄関に飾る門松を作っている時に、あることに気づいた。
// N本の竹を無作為に並べた時の高さをそれぞれAiとしたときに、
// 順番を変えずに連続になった3本を取り出した時に、何組の組み合わせが「門松列」になっているかを知りたくなった。
// 門松とは、選んだ「3つの竹の長さの降順で2番目が、左または右側になっているもの」らしいのですが、
// ここでさらに、「3つの長さはすべて異なる」という条件も満たすものを「門松列」とする。
// N本の竹の高さが与えられるので、「門松列」になる組み合わせ数を求めてください。
// それぞれの竹は番号が振ってあるので区別ができるとする。
// ***入力***
// N
// A1 A2…AN
// 入力は全て整数で与えられる。
// 3≤N≤100=102
// 1≤Ai≤100=102,1≤i≤N
// ***出力***
// 門松列になる組み合わせ数を出力してください。最後に改行してください。

public class No116 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        // 2行目をnextLineで読み込むため、数値もnextLineで読み込む
        int n = Integer.parseInt(sc.nextLine());
        // 新しいstreamを作成し、各要素をintに変換
        int[] a = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        int count = 0;
        for(int i = 0; i < a.length -2; i++) {
            if(((a[i] != a[i + 1]) && (a[i + 1] != a[i + 2]) && (a[i] != a[i + 2]) )
             && !((a[i] < a[i + 1]) && (a[i + 1] < a[i + 2]))
             && !((a[i] > a[i + 1]) && (a[i + 1] > a[i + 2]))) {
                 count++;
             }
        }
        System.out.println(count);
    }
}
0