結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kaoetayakaoetaya
提出日時 2016-11-08 14:26:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 3,166 ms
コンパイル使用メモリ 75,908 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-11-25 04:50:51
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,188 KB
testcase_01 AC 133 ms
53,780 KB
testcase_02 AC 132 ms
54,140 KB
testcase_03 AC 129 ms
54,112 KB
testcase_04 AC 125 ms
54,048 KB
testcase_05 AC 131 ms
53,900 KB
testcase_06 AC 117 ms
52,732 KB
testcase_07 AC 128 ms
54,084 KB
testcase_08 AC 126 ms
54,060 KB
testcase_09 AC 127 ms
54,496 KB
testcase_10 AC 127 ms
54,096 KB
testcase_11 AC 134 ms
53,872 KB
testcase_12 AC 135 ms
54,152 KB
testcase_13 AC 134 ms
53,872 KB
testcase_14 AC 137 ms
53,684 KB
testcase_15 AC 135 ms
54,088 KB
testcase_16 AC 125 ms
54,216 KB
testcase_17 AC 130 ms
54,352 KB
testcase_18 AC 127 ms
53,884 KB
testcase_19 AC 124 ms
53,928 KB
testcase_20 AC 128 ms
54,016 KB
testcase_21 AC 127 ms
53,980 KB
testcase_22 AC 133 ms
54,040 KB
testcase_23 AC 126 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);

		int a = s.nextInt(),b=1,cnt=0;
		
		while(b<a){
			b*=2;
			cnt++;
		}
		System.out.println(cnt);
    }
}
0