結果

問題 No.218 経験値1.5倍
ユーザー Pump0129Pump0129
提出日時 2018-04-09 01:58:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 10,565 ms
コンパイル使用メモリ 429,584 KB
実行使用メモリ 50,040 KB
最終ジャッジ日時 2024-11-20 15:47:58
合計ジャッジ時間 20,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
49,692 KB
testcase_01 AC 287 ms
49,680 KB
testcase_02 AC 290 ms
49,876 KB
testcase_03 AC 286 ms
49,732 KB
testcase_04 AC 290 ms
49,824 KB
testcase_05 AC 290 ms
49,880 KB
testcase_06 AC 286 ms
49,920 KB
testcase_07 AC 287 ms
49,860 KB
testcase_08 AC 287 ms
49,916 KB
testcase_09 AC 291 ms
49,580 KB
testcase_10 AC 291 ms
49,876 KB
testcase_11 AC 293 ms
49,568 KB
testcase_12 AC 290 ms
49,800 KB
testcase_13 AC 294 ms
49,568 KB
testcase_14 AC 290 ms
49,980 KB
testcase_15 AC 292 ms
49,932 KB
testcase_16 AC 292 ms
49,784 KB
testcase_17 AC 291 ms
49,688 KB
testcase_18 AC 291 ms
49,908 KB
testcase_19 AC 293 ms
50,040 KB
testcase_20 AC 291 ms
49,676 KB
testcase_21 AC 293 ms
49,708 KB
testcase_22 AC 287 ms
50,000 KB
testcase_23 AC 291 ms
49,872 KB
testcase_24 AC 292 ms
49,704 KB
testcase_25 AC 291 ms
49,708 KB
testcase_26 AC 293 ms
49,672 KB
testcase_27 AC 291 ms
49,692 KB
testcase_28 AC 292 ms
49,748 KB
testcase_29 AC 290 ms
49,576 KB
testcase_30 AC 289 ms
49,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val a = readLine()!!.toDouble()
    val b = readLine()!!.toDouble()
    val c = readLine()!!.toDouble()

    val nc = Math.ceil(a / b)
    val ec = Math.ceil(a / c)

    if (ec * 1.5 <= nc) {
        println("YES")
    } else {
        println("NO")
    }
}
0