結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー yoneoka1985yoneoka1985
提出日時 2018-10-10 20:20:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-10-12 17:20:14
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,264 KB
testcase_01 AC 119 ms
39,960 KB
testcase_02 AC 133 ms
41,200 KB
testcase_03 AC 127 ms
41,244 KB
testcase_04 AC 127 ms
41,492 KB
testcase_05 AC 117 ms
40,992 KB
testcase_06 AC 118 ms
40,976 KB
testcase_07 AC 102 ms
39,852 KB
testcase_08 AC 126 ms
41,096 KB
testcase_09 AC 118 ms
40,108 KB
testcase_10 AC 128 ms
41,164 KB
testcase_11 AC 108 ms
40,328 KB
testcase_12 AC 127 ms
41,564 KB
testcase_13 AC 124 ms
41,264 KB
testcase_14 AC 124 ms
41,072 KB
testcase_15 AC 122 ms
41,104 KB
testcase_16 AC 120 ms
41,212 KB
testcase_17 AC 118 ms
41,076 KB
testcase_18 AC 127 ms
41,092 KB
testcase_19 AC 126 ms
41,368 KB
testcase_20 AC 127 ms
41,480 KB
testcase_21 AC 126 ms
41,436 KB
testcase_22 AC 124 ms
41,144 KB
testcase_23 AC 105 ms
39,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int n = sc.nextInt();
        int biscuits = 1;
        int count = 0;
        while(biscuits < n){
            biscuits = biscuits * 2;
            count++;
        }
        // 標準出力に書き出す。
        System.out.println(count);
    }
}
0