結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー econo_coffeeecono_coffee
提出日時 2017-03-12 23:30:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 3,723 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 44,484 KB
最終ジャッジ日時 2024-06-30 00:36:30
合計ジャッジ時間 7,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,184 KB
testcase_01 AC 129 ms
41,404 KB
testcase_02 AC 114 ms
40,156 KB
testcase_03 AC 130 ms
41,472 KB
testcase_04 AC 131 ms
41,120 KB
testcase_05 AC 115 ms
41,320 KB
testcase_06 AC 130 ms
41,344 KB
testcase_07 AC 129 ms
41,424 KB
testcase_08 AC 128 ms
41,268 KB
testcase_09 AC 128 ms
41,336 KB
testcase_10 AC 131 ms
41,528 KB
testcase_11 AC 127 ms
41,784 KB
testcase_12 AC 117 ms
41,064 KB
testcase_13 AC 129 ms
41,336 KB
testcase_14 AC 129 ms
41,060 KB
testcase_15 AC 114 ms
40,120 KB
testcase_16 AC 130 ms
41,308 KB
testcase_17 AC 132 ms
41,268 KB
testcase_18 AC 129 ms
41,344 KB
testcase_19 AC 131 ms
41,472 KB
testcase_20 AC 126 ms
44,484 KB
testcase_21 AC 116 ms
41,416 KB
testcase_22 AC 128 ms
41,188 KB
testcase_23 AC 130 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        int biscuit = 1;
        int count = 0;
        while (N > biscuit) {
            biscuit *= 2;
            count++;
        }

        System.out.println(count);
    }
}
0