結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー rutilicusrutilicus
提出日時 2020-08-30 21:50:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 9,286 ms
コンパイル使用メモリ 431,160 KB
実行使用メモリ 56,948 KB
最終ジャッジ日時 2024-11-15 15:34:05
合計ジャッジ時間 16,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
56,920 KB
testcase_01 AC 269 ms
56,900 KB
testcase_02 AC 269 ms
56,788 KB
testcase_03 AC 276 ms
56,656 KB
testcase_04 AC 269 ms
56,852 KB
testcase_05 AC 270 ms
56,656 KB
testcase_06 AC 266 ms
56,720 KB
testcase_07 AC 264 ms
56,688 KB
testcase_08 AC 269 ms
56,712 KB
testcase_09 AC 268 ms
56,772 KB
testcase_10 AC 269 ms
56,668 KB
testcase_11 AC 271 ms
56,768 KB
testcase_12 AC 271 ms
56,724 KB
testcase_13 AC 268 ms
56,652 KB
testcase_14 AC 271 ms
56,844 KB
testcase_15 AC 274 ms
56,948 KB
testcase_16 AC 270 ms
56,804 KB
testcase_17 AC 276 ms
56,828 KB
testcase_18 AC 283 ms
56,844 KB
testcase_19 AC 268 ms
56,672 KB
testcase_20 AC 267 ms
56,752 KB
testcase_21 AC 265 ms
56,744 KB
testcase_22 AC 283 ms
56,932 KB
testcase_23 AC 273 ms
56,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:15:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    var ans = 0

    var current = 1

    while (current < n) {
        ans++
        current *= 2
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0