結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 22:55:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 52,476 KB
最終ジャッジ日時 2024-07-06 10:05:31
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,124 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 46 ms
50,048 KB
testcase_04 AC 47 ms
50,400 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 49 ms
49,832 KB
testcase_08 AC 50 ms
49,752 KB
testcase_09 AC 46 ms
50,176 KB
testcase_10 AC 49 ms
50,184 KB
testcase_11 AC 49 ms
50,120 KB
testcase_12 AC 46 ms
49,652 KB
testcase_13 AC 48 ms
50,340 KB
testcase_14 AC 46 ms
49,948 KB
testcase_15 AC 46 ms
49,988 KB
testcase_16 AC 48 ms
50,212 KB
testcase_17 AC 48 ms
49,740 KB
testcase_18 AC 49 ms
49,648 KB
testcase_19 AC 49 ms
49,948 KB
testcase_20 AC 47 ms
49,736 KB
testcase_21 AC 50 ms
49,940 KB
testcase_22 AC 48 ms
50,012 KB
testcase_23 AC 46 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		int n = Integer.parseInt(line);
		
		double d1 = 1;
		double d2 = 0;
		while(true) {
			d2 = Math.pow(2, d1);
			if (d2 > n) {
//				d1--;
				break;
			}
			d1++;
		}
		
		System.out.println((int)d1);
	}
}
0