結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 17:07:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-05-07 14:54:21
合計ジャッジ時間 6,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,040 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 108 ms
41,204 KB
testcase_04 AC 119 ms
41,080 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 119 ms
40,944 KB
testcase_08 AC 116 ms
41,336 KB
testcase_09 AC 120 ms
41,376 KB
testcase_10 AC 107 ms
41,312 KB
testcase_11 AC 107 ms
41,600 KB
testcase_12 AC 116 ms
41,192 KB
testcase_13 AC 122 ms
41,296 KB
testcase_14 AC 105 ms
41,212 KB
testcase_15 AC 117 ms
41,072 KB
testcase_16 AC 109 ms
41,196 KB
testcase_17 AC 122 ms
41,196 KB
testcase_18 AC 109 ms
41,192 KB
testcase_19 AC 116 ms
41,200 KB
testcase_20 AC 119 ms
41,472 KB
testcase_21 AC 120 ms
41,616 KB
testcase_22 AC 121 ms
41,156 KB
testcase_23 AC 118 ms
41,500 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