結果

問題 No.23 技の選択
ユーザー hirogahiroga
提出日時 2020-01-14 05:41:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 299 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 12,965 ms
コンパイル使用メモリ 442,428 KB
実行使用メモリ 51,872 KB
最終ジャッジ日時 2024-06-06 10:38:24
合計ジャッジ時間 23,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
51,436 KB
testcase_01 AC 293 ms
51,628 KB
testcase_02 AC 287 ms
51,652 KB
testcase_03 AC 297 ms
51,684 KB
testcase_04 AC 293 ms
51,804 KB
testcase_05 AC 294 ms
51,616 KB
testcase_06 AC 291 ms
51,448 KB
testcase_07 AC 297 ms
51,564 KB
testcase_08 AC 290 ms
51,556 KB
testcase_09 AC 298 ms
51,576 KB
testcase_10 AC 290 ms
51,552 KB
testcase_11 AC 293 ms
51,488 KB
testcase_12 AC 283 ms
51,872 KB
testcase_13 AC 289 ms
51,620 KB
testcase_14 AC 287 ms
51,608 KB
testcase_15 AC 293 ms
51,648 KB
testcase_16 AC 295 ms
51,696 KB
testcase_17 AC 293 ms
51,648 KB
testcase_18 AC 292 ms
51,716 KB
testcase_19 AC 291 ms
51,648 KB
testcase_20 AC 291 ms
51,660 KB
testcase_21 AC 294 ms
51,344 KB
testcase_22 AC 294 ms
51,584 KB
testcase_23 AC 299 ms
51,720 KB
testcase_24 AC 296 ms
51,508 KB
testcase_25 AC 287 ms
51,656 KB
testcase_26 AC 298 ms
51,584 KB
testcase_27 AC 293 ms
51,576 KB
testcase_28 AC 288 ms
51,484 KB
testcase_29 AC 292 ms
51,544 KB
testcase_30 AC 286 ms
51,344 KB
testcase_31 AC 297 ms
51,340 KB
testcase_32 AC 293 ms
51,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:29:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.min

private const val SPECIAL_ATTACK_HIT_RATE = 2.0 / 3.0
private const val SPECIAL_ATTACK_NUM_EXPECTED = 1.0 / SPECIAL_ATTACK_HIT_RATE

internal fun solve(HP: Int, normal: Int, special: Int): String {
    var counter = Double.MAX_VALUE
    fun updateIfNewRecord(record: Double){
        counter = min(counter, record)
    }

    for (n in 0..Int.MAX_VALUE){
        var currentHP: Double = (HP - normal * n).toDouble()
        if (currentHP <= 0){
            updateIfNewRecord(n.toDouble())
            break
        }
        for (m in 1..Int.MAX_VALUE){
            currentHP -= special
            if (currentHP <= 0){
                updateIfNewRecord(n + m * SPECIAL_ATTACK_NUM_EXPECTED)
                break
            }
        }
    }
    return counter.toString()
}

fun main(args: Array<String>) {
    var OUTPUT = ""

    val br = System.`in`.bufferedReader()
    val (HP, normal, special) = br.readLine().split(" ").map { it.toInt() }

    OUTPUT += solve(HP, normal, special)
    print(OUTPUT)
}
0