結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-18 13:18:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 3,964 ms
コンパイル使用メモリ 73,488 KB
実行使用メモリ 37,032 KB
最終ジャッジ日時 2024-11-08 02:28:12
合計ジャッジ時間 5,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,552 KB
testcase_01 AC 51 ms
36,680 KB
testcase_02 AC 51 ms
36,532 KB
testcase_03 AC 50 ms
36,804 KB
testcase_04 AC 50 ms
36,764 KB
testcase_05 AC 52 ms
36,944 KB
testcase_06 AC 52 ms
36,644 KB
testcase_07 AC 53 ms
36,656 KB
testcase_08 AC 53 ms
36,908 KB
testcase_09 AC 53 ms
37,032 KB
testcase_10 AC 52 ms
36,992 KB
testcase_11 AC 53 ms
36,856 KB
testcase_12 AC 53 ms
36,548 KB
testcase_13 AC 52 ms
36,548 KB
testcase_14 AC 52 ms
36,744 KB
testcase_15 AC 52 ms
36,828 KB
testcase_16 AC 52 ms
36,728 KB
testcase_17 AC 51 ms
36,732 KB
testcase_18 AC 53 ms
36,792 KB
testcase_19 AC 53 ms
36,944 KB
testcase_20 AC 55 ms
36,372 KB
testcase_21 AC 52 ms
36,624 KB
testcase_22 AC 52 ms
37,012 KB
testcase_23 AC 52 ms
36,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No47 {

	public static void main(String[] args) throws IOException, NumberFormatException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		int count = 0;
		for (int i = 0; Math.pow(2,i) < n; i++) count++;
		System.out.println(count);
	}
}
0