結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー yagi2yagi2
提出日時 2017-04-26 11:14:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-13 14:00:36
合計ジャッジ時間 6,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,008 KB
testcase_01 AC 128 ms
54,072 KB
testcase_02 AC 128 ms
53,804 KB
testcase_03 AC 127 ms
53,788 KB
testcase_04 AC 113 ms
52,912 KB
testcase_05 AC 128 ms
54,108 KB
testcase_06 AC 129 ms
54,072 KB
testcase_07 AC 129 ms
54,056 KB
testcase_08 AC 129 ms
53,928 KB
testcase_09 AC 127 ms
53,960 KB
testcase_10 AC 128 ms
54,212 KB
testcase_11 AC 128 ms
53,944 KB
testcase_12 AC 129 ms
54,072 KB
testcase_13 AC 115 ms
52,728 KB
testcase_14 AC 126 ms
54,068 KB
testcase_15 AC 128 ms
54,028 KB
testcase_16 AC 127 ms
53,836 KB
testcase_17 AC 127 ms
53,748 KB
testcase_18 AC 126 ms
53,996 KB
testcase_19 AC 128 ms
53,800 KB
testcase_20 AC 128 ms
54,284 KB
testcase_21 AC 129 ms
53,956 KB
testcase_22 AC 130 ms
54,104 KB
testcase_23 AC 129 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No47;

import java.util.Scanner;

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

        long N = Long.parseLong(sc.next());

        int B = 1;
        int A = 0;
        while (B < N) {
            A++;
            B *= 2;
        }
        System.out.println(A);
    }
}
0