結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 22:42:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-11-21 20:13:15
合計ジャッジ時間 6,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,288 KB
testcase_01 AC 126 ms
41,244 KB
testcase_02 AC 118 ms
41,384 KB
testcase_03 AC 123 ms
41,200 KB
testcase_04 AC 125 ms
41,300 KB
testcase_05 AC 118 ms
41,228 KB
testcase_06 AC 119 ms
40,996 KB
testcase_07 AC 115 ms
41,480 KB
testcase_08 AC 117 ms
41,176 KB
testcase_09 AC 102 ms
39,996 KB
testcase_10 AC 122 ms
41,300 KB
testcase_11 AC 128 ms
41,284 KB
testcase_12 AC 108 ms
40,284 KB
testcase_13 AC 120 ms
41,236 KB
testcase_14 AC 122 ms
40,992 KB
testcase_15 AC 111 ms
40,024 KB
testcase_16 AC 115 ms
41,220 KB
testcase_17 AC 117 ms
41,152 KB
testcase_18 AC 120 ms
40,336 KB
testcase_19 AC 121 ms
41,120 KB
testcase_20 AC 123 ms
41,268 KB
testcase_21 AC 124 ms
41,068 KB
testcase_22 AC 122 ms
41,308 KB
testcase_23 AC 110 ms
40,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No47 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int biscuits = s.nextInt();
        int current = 1;
        int tapped = 0;
        while (current < biscuits) {
            current *= 2;
            tapped++;
        }
        System.out.println(tapped);
    }
}
0