結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー yuuki121yuuki121
提出日時 2021-01-04 23:35:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 37,004 KB
最終ジャッジ日時 2024-10-15 08:15:54
合計ジャッジ時間 4,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,524 KB
testcase_01 AC 52 ms
36,536 KB
testcase_02 AC 52 ms
36,780 KB
testcase_03 AC 52 ms
36,528 KB
testcase_04 AC 53 ms
36,968 KB
testcase_05 AC 53 ms
36,824 KB
testcase_06 AC 53 ms
36,924 KB
testcase_07 AC 53 ms
36,924 KB
testcase_08 AC 55 ms
36,968 KB
testcase_09 AC 53 ms
36,512 KB
testcase_10 AC 54 ms
36,972 KB
testcase_11 AC 53 ms
36,524 KB
testcase_12 AC 54 ms
36,776 KB
testcase_13 AC 53 ms
36,988 KB
testcase_14 AC 53 ms
36,988 KB
testcase_15 AC 53 ms
36,880 KB
testcase_16 AC 53 ms
37,004 KB
testcase_17 AC 53 ms
36,964 KB
testcase_18 AC 54 ms
36,972 KB
testcase_19 AC 53 ms
36,648 KB
testcase_20 AC 54 ms
36,468 KB
testcase_21 AC 53 ms
36,536 KB
testcase_22 AC 53 ms
36,612 KB
testcase_23 AC 53 ms
36,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int num = Integer.parseInt(br.readLine());
		int count = 0;
		int base = 1;

		while (num > base) {
			base *= 2;
			count++;
		}
		System.out.println(count);

	}
}
0