結果

問題 No.116 門松列(1)
ユーザー komkomhkomkomh
提出日時 2019-06-05 10:51:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 337 ms / 5,000 ms
コード長 849 bytes
コンパイル時間 12,310 ms
コンパイル使用メモリ 435,960 KB
実行使用メモリ 51,996 KB
最終ジャッジ日時 2024-11-20 18:41:09
合計ジャッジ時間 21,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
51,700 KB
testcase_01 AC 322 ms
51,804 KB
testcase_02 AC 319 ms
51,964 KB
testcase_03 AC 324 ms
51,512 KB
testcase_04 AC 321 ms
51,996 KB
testcase_05 AC 325 ms
51,832 KB
testcase_06 AC 324 ms
51,852 KB
testcase_07 AC 322 ms
51,884 KB
testcase_08 AC 327 ms
51,844 KB
testcase_09 AC 328 ms
51,924 KB
testcase_10 AC 325 ms
51,860 KB
testcase_11 AC 319 ms
51,708 KB
testcase_12 AC 321 ms
51,644 KB
testcase_13 AC 326 ms
51,776 KB
testcase_14 AC 329 ms
51,584 KB
testcase_15 AC 325 ms
51,632 KB
testcase_16 AC 328 ms
51,672 KB
testcase_17 AC 325 ms
51,584 KB
testcase_18 AC 331 ms
51,688 KB
testcase_19 AC 322 ms
51,836 KB
testcase_20 AC 325 ms
51,536 KB
testcase_21 AC 325 ms
51,884 KB
testcase_22 AC 330 ms
51,540 KB
testcase_23 AC 337 ms
51,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:9: warning: variable 'N' is never used
    val N = readLine()!!.toInt()
        ^

ソースコード

diff #

package yukicoder

fun main() {
    val N = readLine()!!.toInt()
    val A = readLine()!!.split(" ").map(String::toInt)

    var count = 0
    for (index in (1 until A.size - 1)) {
        // 門松を生成する
        val kadomatsu = Triple(A[index - 1], A[index], A[index + 1])

        // 同じ高さがない事
        if (kadomatsu.first == kadomatsu.second
            || kadomatsu.second == kadomatsu.third
            || kadomatsu.first == kadomatsu.third
        ) {
            continue
        }

        // 真ん中の高さが2番目でない事
        if (kadomatsu.first > kadomatsu.second && kadomatsu.second > kadomatsu.third) {
            continue
        }
        if (kadomatsu.first < kadomatsu.second && kadomatsu.second < kadomatsu.third) {
            continue
        }
        count++
    }

    print("${count}")
}
0