結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー da_louisda_louis
提出日時 2020-02-07 01:14:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 205 bytes
コンパイル時間 9,987 ms
コンパイル使用メモリ 429,584 KB
実行使用メモリ 50,148 KB
最終ジャッジ日時 2024-09-25 07:09:56
合計ジャッジ時間 18,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
49,748 KB
testcase_01 AC 292 ms
49,828 KB
testcase_02 AC 286 ms
49,708 KB
testcase_03 AC 295 ms
49,988 KB
testcase_04 AC 295 ms
49,708 KB
testcase_05 AC 291 ms
49,988 KB
testcase_06 AC 292 ms
49,940 KB
testcase_07 AC 287 ms
50,064 KB
testcase_08 AC 289 ms
50,040 KB
testcase_09 AC 293 ms
50,036 KB
testcase_10 AC 289 ms
50,148 KB
testcase_11 AC 287 ms
50,032 KB
testcase_12 AC 291 ms
49,828 KB
testcase_13 AC 295 ms
50,076 KB
testcase_14 AC 294 ms
49,912 KB
testcase_15 AC 290 ms
50,064 KB
testcase_16 AC 293 ms
49,912 KB
testcase_17 AC 291 ms
49,924 KB
testcase_18 AC 290 ms
49,664 KB
testcase_19 AC 287 ms
49,704 KB
testcase_20 AC 292 ms
50,088 KB
testcase_21 AC 289 ms
50,112 KB
testcase_22 AC 292 ms
49,920 KB
testcase_23 AC 290 ms
49,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.ceil
import kotlin.math.log2

fun main(args: Array<String>) {
    p89()
}

fun p89() {
    val n = readLine()!!.toDouble()

    val answer = ceil(log2(n)).toInt()

    println(answer)
}
0