結果

問題 No.23 技の選択
ユーザー hirogahiroga
提出日時 2020-01-13 14:33:36
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 11,720 ms
コンパイル使用メモリ 430,168 KB
実行使用メモリ 51,904 KB
最終ジャッジ日時 2024-05-10 00:01:40
合計ジャッジ時間 23,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
51,572 KB
testcase_01 AC 326 ms
51,576 KB
testcase_02 AC 323 ms
51,708 KB
testcase_03 AC 315 ms
51,568 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 330 ms
51,852 KB
testcase_07 AC 308 ms
51,708 KB
testcase_08 AC 298 ms
51,628 KB
testcase_09 AC 313 ms
51,576 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 287 ms
51,732 KB
testcase_13 WA -
testcase_14 AC 330 ms
51,768 KB
testcase_15 AC 295 ms
51,716 KB
testcase_16 AC 299 ms
51,524 KB
testcase_17 AC 291 ms
51,716 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 294 ms
51,660 KB
testcase_21 AC 295 ms
51,624 KB
testcase_22 AC 284 ms
51,712 KB
testcase_23 AC 293 ms
51,904 KB
testcase_24 AC 292 ms
51,772 KB
testcase_25 AC 294 ms
51,524 KB
testcase_26 AC 292 ms
51,704 KB
testcase_27 AC 289 ms
51,604 KB
testcase_28 AC 305 ms
51,656 KB
testcase_29 AC 290 ms
51,640 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:21:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

private const val SPECIAL_ATTACK_NUM_EXPECTED = 1.5

internal fun solve(HP: Int, normal: Int, special: Int): String {
    fun attackUntilYouDie(currentHP: Double): Double {
        return when {
            currentHP <= 0 -> {
                0.0
            }
            currentHP <= normal -> {
                1.0
            }
            else -> {
                SPECIAL_ATTACK_NUM_EXPECTED + attackUntilYouDie(currentHP - special)
            }
        }
    }
    return attackUntilYouDie(HP.toDouble()).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