結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー jonki324jonki324
提出日時 2018-06-05 14:31:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-06-30 09:54:53
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,432 KB
testcase_01 AC 129 ms
41,188 KB
testcase_02 AC 127 ms
41,320 KB
testcase_03 AC 128 ms
41,572 KB
testcase_04 AC 128 ms
41,256 KB
testcase_05 AC 115 ms
41,064 KB
testcase_06 AC 127 ms
41,132 KB
testcase_07 AC 129 ms
41,268 KB
testcase_08 AC 128 ms
41,548 KB
testcase_09 AC 128 ms
41,572 KB
testcase_10 AC 127 ms
41,204 KB
testcase_11 AC 123 ms
41,372 KB
testcase_12 AC 129 ms
41,260 KB
testcase_13 AC 128 ms
41,300 KB
testcase_14 AC 127 ms
41,376 KB
testcase_15 AC 129 ms
41,176 KB
testcase_16 AC 126 ms
41,316 KB
testcase_17 AC 114 ms
41,364 KB
testcase_18 AC 112 ms
41,360 KB
testcase_19 AC 128 ms
41,292 KB
testcase_20 AC 128 ms
41,140 KB
testcase_21 AC 128 ms
41,540 KB
testcase_22 AC 128 ms
41,184 KB
testcase_23 AC 130 ms
41,132 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) {
            if (b >= n) {
                break;
            }
            b *= 2;
            cnt++;
        }
        System.out.println(cnt);
        scan.close();
    }
}
0