結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー uchida_tuchida_t
提出日時 2023-06-22 13:00:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 239 bytes
コンパイル時間 10,735 ms
コンパイル使用メモリ 421,192 KB
実行使用メモリ 49,696 KB
最終ジャッジ日時 2024-06-29 20:32:06
合計ジャッジ時間 18,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
49,516 KB
testcase_01 AC 285 ms
49,340 KB
testcase_02 AC 286 ms
49,592 KB
testcase_03 AC 275 ms
49,252 KB
testcase_04 AC 280 ms
49,392 KB
testcase_05 AC 281 ms
49,696 KB
testcase_06 AC 287 ms
49,376 KB
testcase_07 AC 279 ms
49,404 KB
testcase_08 AC 281 ms
49,432 KB
testcase_09 AC 287 ms
49,584 KB
testcase_10 AC 279 ms
49,388 KB
testcase_11 AC 274 ms
49,416 KB
testcase_12 AC 284 ms
49,564 KB
testcase_13 AC 291 ms
49,540 KB
testcase_14 AC 288 ms
49,368 KB
testcase_15 AC 291 ms
49,620 KB
testcase_16 AC 287 ms
49,624 KB
testcase_17 AC 286 ms
49,348 KB
testcase_18 AC 285 ms
49,408 KB
testcase_19 AC 281 ms
49,492 KB
testcase_20 AC 285 ms
49,668 KB
testcase_21 AC 279 ms
49,568 KB
testcase_22 AC 279 ms
49,592 KB
testcase_23 AC 279 ms
49,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val wantBiscuit = readLine()!!.toInt()
    var numOfBiscuit = 1
    var numOfClap = 0
    while (numOfBiscuit < wantBiscuit) {
        numOfBiscuit *= 2
        numOfClap++
    }
    println(numOfClap)
}
0