結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 17:07:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 3,842 ms
コンパイル使用メモリ 77,872 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-11-30 08:29:31
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,208 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 135 ms
53,856 KB
testcase_04 AC 135 ms
53,996 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 136 ms
53,984 KB
testcase_08 AC 138 ms
54,316 KB
testcase_09 AC 137 ms
53,848 KB
testcase_10 AC 136 ms
54,176 KB
testcase_11 AC 134 ms
53,796 KB
testcase_12 AC 133 ms
53,932 KB
testcase_13 AC 135 ms
54,096 KB
testcase_14 AC 137 ms
54,076 KB
testcase_15 AC 134 ms
53,992 KB
testcase_16 AC 138 ms
53,912 KB
testcase_17 AC 134 ms
54,456 KB
testcase_18 AC 134 ms
53,856 KB
testcase_19 AC 134 ms
53,888 KB
testcase_20 AC 135 ms
53,940 KB
testcase_21 AC 133 ms
54,004 KB
testcase_22 AC 138 ms
53,932 KB
testcase_23 AC 134 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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

        int ansNum = sc.nextInt();
        int currentNum = 1;
        int powCount = 0;
        while (ansNum >= currentNum) {
            currentNum *= 2;
            powCount++;
        }

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