結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー komkomhkomkomh
提出日時 2019-04-04 14:18:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 279 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 10,401 ms
コンパイル使用メモリ 421,656 KB
実行使用メモリ 49,984 KB
最終ジャッジ日時 2024-11-20 17:40:30
合計ジャッジ時間 16,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
49,512 KB
testcase_01 AC 266 ms
49,616 KB
testcase_02 AC 263 ms
49,984 KB
testcase_03 AC 266 ms
49,572 KB
testcase_04 AC 261 ms
49,516 KB
testcase_05 AC 279 ms
49,712 KB
testcase_06 AC 272 ms
49,540 KB
testcase_07 AC 274 ms
49,812 KB
testcase_08 AC 274 ms
49,624 KB
testcase_09 AC 261 ms
49,824 KB
testcase_10 AC 263 ms
49,812 KB
testcase_11 AC 262 ms
49,616 KB
testcase_12 AC 270 ms
49,636 KB
testcase_13 AC 272 ms
49,820 KB
testcase_14 AC 264 ms
49,816 KB
testcase_15 AC 264 ms
49,856 KB
testcase_16 AC 260 ms
49,788 KB
testcase_17 AC 268 ms
49,644 KB
testcase_18 AC 260 ms
49,656 KB
testcase_19 AC 263 ms
49,592 KB
testcase_20 AC 260 ms
49,524 KB
testcase_21 AC 259 ms
49,480 KB
testcase_22 AC 266 ms
49,616 KB
testcase_23 AC 268 ms
49,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val N: Int = readLine()!!.toInt()
    var count: Int = 0
    var originalMaisu = N

    while (originalMaisu > 1) {
        originalMaisu = originalMaisu / 2 + originalMaisu % 2
        count++
    }
    println(count)
}
0