結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー abcabc
提出日時 2016-10-24 02:34:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-11-24 02:24:04
合計ジャッジ時間 5,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,400 KB
testcase_01 AC 115 ms
40,168 KB
testcase_02 AC 124 ms
41,260 KB
testcase_03 AC 126 ms
41,512 KB
testcase_04 AC 124 ms
41,264 KB
testcase_05 AC 125 ms
41,280 KB
testcase_06 AC 123 ms
40,892 KB
testcase_07 AC 124 ms
41,512 KB
testcase_08 AC 118 ms
41,572 KB
testcase_09 AC 126 ms
41,324 KB
testcase_10 AC 115 ms
39,920 KB
testcase_11 AC 126 ms
41,428 KB
testcase_12 AC 126 ms
41,276 KB
testcase_13 AC 127 ms
41,440 KB
testcase_14 AC 124 ms
41,288 KB
testcase_15 AC 130 ms
41,296 KB
testcase_16 AC 130 ms
41,384 KB
testcase_17 AC 126 ms
41,460 KB
testcase_18 AC 125 ms
41,296 KB
testcase_19 AC 115 ms
39,996 KB
testcase_20 AC 125 ms
41,056 KB
testcase_21 AC 127 ms
41,528 KB
testcase_22 AC 135 ms
41,216 KB
testcase_23 AC 130 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numWantBiscuits = sc.nextInt();

        int numCurrentBiscuits = 1;
        int hitPocketCount = 0;

        while (numCurrentBiscuits < numWantBiscuits) {

            numCurrentBiscuits *= 2;
            hitPocketCount++;

        }

        System.out.println(hitPocketCount);

    }

}
0