結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,544 KB
testcase_01 AC 45 ms
50,396 KB
testcase_02 AC 46 ms
50,204 KB
testcase_03 AC 47 ms
49,824 KB
testcase_04 AC 46 ms
50,236 KB
testcase_05 WA -
testcase_06 AC 45 ms
50,028 KB
testcase_07 AC 44 ms
50,136 KB
testcase_08 AC 44 ms
50,284 KB
testcase_09 AC 47 ms
50,060 KB
testcase_10 AC 46 ms
50,020 KB
testcase_11 AC 46 ms
49,776 KB
testcase_12 AC 46 ms
50,120 KB
testcase_13 AC 48 ms
49,636 KB
testcase_14 AC 47 ms
49,980 KB
testcase_15 AC 46 ms
50,008 KB
testcase_16 AC 48 ms
50,208 KB
testcase_17 AC 48 ms
50,528 KB
testcase_18 AC 47 ms
50,364 KB
testcase_19 AC 45 ms
50,028 KB
testcase_20 AC 46 ms
50,188 KB
testcase_21 AC 46 ms
50,116 KB
testcase_22 AC 48 ms
50,204 KB
testcase_23 AC 48 ms
50,224 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;
		if (n < 2) {
			System.out.println("0");
		}
		while(true) {
			d2 = Math.pow(2, d1);
			if (d2 > n) {
//					d1--;
				break;
			}
			if (n == d2) {
				break;
			}
			d1++;
		}
		
		System.out.println((int)d1);
	}
}
0