結果

問題 No.116 門松列(1)
ユーザー minokasagominokasago
提出日時 2019-11-01 16:03:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 615 bytes
コンパイル時間 11,808 ms
コンパイル使用メモリ 429,304 KB
実行使用メモリ 51,932 KB
最終ジャッジ日時 2024-09-14 22:44:13
合計ジャッジ時間 20,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
51,816 KB
testcase_01 AC 315 ms
51,932 KB
testcase_02 AC 312 ms
51,544 KB
testcase_03 AC 313 ms
51,808 KB
testcase_04 AC 314 ms
51,760 KB
testcase_05 AC 317 ms
51,648 KB
testcase_06 AC 321 ms
51,756 KB
testcase_07 AC 317 ms
51,652 KB
testcase_08 AC 318 ms
51,528 KB
testcase_09 AC 313 ms
51,736 KB
testcase_10 AC 316 ms
51,880 KB
testcase_11 AC 317 ms
51,800 KB
testcase_12 AC 319 ms
51,860 KB
testcase_13 AC 319 ms
51,688 KB
testcase_14 AC 322 ms
51,716 KB
testcase_15 AC 320 ms
51,640 KB
testcase_16 AC 321 ms
51,856 KB
testcase_17 AC 320 ms
51,684 KB
testcase_18 AC 314 ms
51,668 KB
testcase_19 AC 315 ms
51,924 KB
testcase_20 AC 318 ms
51,760 KB
testcase_21 AC 321 ms
51,620 KB
testcase_22 AC 317 ms
51,592 KB
testcase_23 AC 323 ms
51,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

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

    var ans = 0
    for (i in 0..N-3) {
        if (isDistinct(A[i], A[i+1], A[i+2]) && A[i+1] != med(A[i], A[i+1], A[i+2])) {
            ans++;
        }
    }
    
    println(ans)
}

fun isDistinct(a: Int, b:Int, c:Int): Boolean {
    return a != b && b != c && c != a
}

fun med(a: Int, b: Int, c: Int): Int {
    if (a <= b) {
        if (c <= a) return a
        if (c <= b) return c
    } else {
        if (a <= c) return a
        if (b <= c) return c        
    }
    return b
}
0