結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー karayuukarayuu
提出日時 2018-11-23 09:31:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 11,583 ms
コンパイル使用メモリ 423,600 KB
実行使用メモリ 49,872 KB
最終ジャッジ日時 2024-11-20 17:09:23
合計ジャッジ時間 18,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
49,820 KB
testcase_01 AC 296 ms
49,648 KB
testcase_02 AC 296 ms
49,524 KB
testcase_03 AC 292 ms
49,512 KB
testcase_04 AC 293 ms
49,808 KB
testcase_05 AC 297 ms
49,536 KB
testcase_06 AC 299 ms
49,576 KB
testcase_07 AC 304 ms
49,612 KB
testcase_08 AC 298 ms
49,632 KB
testcase_09 AC 297 ms
49,524 KB
testcase_10 AC 296 ms
49,816 KB
testcase_11 AC 300 ms
49,736 KB
testcase_12 AC 299 ms
49,812 KB
testcase_13 AC 298 ms
49,820 KB
testcase_14 AC 302 ms
49,872 KB
testcase_15 AC 293 ms
49,608 KB
testcase_16 AC 303 ms
49,820 KB
testcase_17 AC 299 ms
49,724 KB
testcase_18 AC 294 ms
49,624 KB
testcase_19 AC 297 ms
49,536 KB
testcase_20 AC 294 ms
49,820 KB
testcase_21 AC 297 ms
49,512 KB
testcase_22 AC 296 ms
49,612 KB
testcase_23 AC 299 ms
49,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

/**
 * Created by karayuu on 2018/11/23
 */
fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    var d = 1
    var count = 0

    while (d < n) {
        d = d.double()
        count++
    }

    println(count)
}

fun Int.double() = this * 2
0