結果

問題 No.91 赤、緑、青の石
ユーザー バカらっくバカらっく
提出日時 2019-09-28 04:52:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 1,147 bytes
コンパイル時間 12,764 ms
コンパイル使用メモリ 449,768 KB
実行使用メモリ 60,308 KB
最終ジャッジ日時 2024-06-24 07:21:57
合計ジャッジ時間 24,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
60,056 KB
testcase_01 AC 311 ms
60,192 KB
testcase_02 AC 313 ms
60,056 KB
testcase_03 AC 317 ms
60,240 KB
testcase_04 AC 320 ms
60,148 KB
testcase_05 AC 318 ms
60,148 KB
testcase_06 AC 311 ms
60,224 KB
testcase_07 AC 315 ms
60,148 KB
testcase_08 AC 319 ms
60,060 KB
testcase_09 AC 310 ms
60,056 KB
testcase_10 AC 318 ms
60,012 KB
testcase_11 AC 320 ms
60,192 KB
testcase_12 AC 316 ms
60,124 KB
testcase_13 AC 311 ms
60,112 KB
testcase_14 AC 315 ms
60,208 KB
testcase_15 AC 313 ms
60,116 KB
testcase_16 AC 313 ms
60,192 KB
testcase_17 AC 312 ms
60,308 KB
testcase_18 AC 313 ms
60,296 KB
testcase_19 AC 310 ms
60,216 KB
testcase_20 AC 316 ms
60,076 KB
testcase_21 AC 311 ms
60,044 KB
testcase_22 AC 310 ms
60,164 KB
testcase_23 AC 317 ms
60,236 KB
testcase_24 AC 315 ms
60,308 KB
testcase_25 AC 312 ms
60,200 KB
testcase_26 AC 308 ms
60,204 KB
testcase_27 AC 308 ms
60,188 KB
testcase_28 AC 315 ms
60,212 KB
testcase_29 AC 312 ms
60,292 KB
testcase_30 AC 316 ms
60,236 KB
testcase_31 AC 319 ms
60,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.PI


fun main(arr:Array<String>) {
    rgb = readLine()!!.split(" ").map { it.toInt() }.sorted()
    val ans = getAns(rgb[0], rgb[2])
    println(ans)
}

var rgb = listOf<Int>()

fun getAns(min:Int, max:Int):Int {
    if(max-min <= 1) {
        if(canCreate(max)) {
            return max
        }
        return min
    }

    val mid = (max+min)/2
    return if(canCreate(mid)) {
        getAns(mid, max)
    } else {
        getAns(min, mid)
    }
}

fun canCreate(count:Int):Boolean {
    if(count*3 > rgb.sum()) {
        return false
    }
    if(count <= rgb[0]) {
        return true
    }
    val diff = rgb.map { it - count }.toMutableList()
    if(diff[0] < 0) {
        val move = Math.min(diff[0] * -1, diff[2] / 2)
        diff[0] += move
        diff[2] -= move*2
        if(diff[0] < 0 && diff[1] > 0) {
            val move2 = Math.min(diff[0] * -1, diff[1] / 2)
            diff[0] += move2
            diff[1] -= move2 * 2
        }
    }
    if(diff[1] < 0) {
        val move = Math.min(diff[1] * -1, diff[2] / 2)
        diff[1] += move
        diff[2] -= move * 2
    }

    return diff.all { it >= 0 }
}
0