結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー jonki324jonki324
提出日時 2018-06-05 14:29:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-30 09:54:44
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
52,928 KB
testcase_01 AC 129 ms
54,316 KB
testcase_02 AC 129 ms
54,232 KB
testcase_03 AC 128 ms
53,972 KB
testcase_04 AC 129 ms
54,044 KB
testcase_05 WA -
testcase_06 AC 128 ms
53,940 KB
testcase_07 AC 124 ms
54,004 KB
testcase_08 AC 113 ms
52,696 KB
testcase_09 AC 128 ms
53,832 KB
testcase_10 AC 128 ms
53,944 KB
testcase_11 AC 129 ms
54,132 KB
testcase_12 AC 128 ms
54,080 KB
testcase_13 AC 126 ms
53,964 KB
testcase_14 AC 127 ms
53,948 KB
testcase_15 AC 114 ms
52,864 KB
testcase_16 AC 129 ms
54,088 KB
testcase_17 AC 128 ms
54,084 KB
testcase_18 AC 114 ms
53,044 KB
testcase_19 AC 129 ms
53,816 KB
testcase_20 AC 128 ms
54,140 KB
testcase_21 AC 127 ms
54,060 KB
testcase_22 AC 131 ms
54,028 KB
testcase_23 AC 130 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        int b = 1;
        int cnt = 0;
        while (true) {
            b *= 2;
            cnt++;
            if (b >= n) {
                break;
            }
        }
        System.out.println(cnt);
        scan.close();
    }
}
0