結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 21:24:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 73,584 KB
実行使用メモリ 37,168 KB
最終ジャッジ日時 2024-07-22 10:09:28
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
36,676 KB
testcase_01 AC 65 ms
37,068 KB
testcase_02 AC 68 ms
36,548 KB
testcase_03 AC 63 ms
36,884 KB
testcase_04 AC 64 ms
37,068 KB
testcase_05 AC 60 ms
36,904 KB
testcase_06 AC 63 ms
36,856 KB
testcase_07 AC 63 ms
37,012 KB
testcase_08 AC 64 ms
36,992 KB
testcase_09 AC 64 ms
36,752 KB
testcase_10 AC 62 ms
36,540 KB
testcase_11 AC 60 ms
36,960 KB
testcase_12 AC 64 ms
37,068 KB
testcase_13 AC 62 ms
36,768 KB
testcase_14 AC 63 ms
36,748 KB
testcase_15 AC 66 ms
36,956 KB
testcase_16 AC 60 ms
37,028 KB
testcase_17 AC 63 ms
37,040 KB
testcase_18 AC 65 ms
37,076 KB
testcase_19 AC 62 ms
36,944 KB
testcase_20 AC 64 ms
36,992 KB
testcase_21 AC 63 ms
36,648 KB
testcase_22 AC 62 ms
37,168 KB
testcase_23 AC 63 ms
36,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(reader.readLine());
        int i = 1;
        int counter = 0;
        while (i < N) {
            i = i * 2;
            counter+=1;
        }
        System.out.println(counter);

    }
}
0