結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,000 KB
testcase_01 AC 54 ms
49,992 KB
testcase_02 AC 53 ms
49,744 KB
testcase_03 AC 53 ms
49,884 KB
testcase_04 AC 54 ms
50,268 KB
testcase_05 WA -
testcase_06 AC 54 ms
49,920 KB
testcase_07 AC 54 ms
50,184 KB
testcase_08 AC 54 ms
50,008 KB
testcase_09 AC 56 ms
50,308 KB
testcase_10 AC 53 ms
49,928 KB
testcase_11 AC 55 ms
50,212 KB
testcase_12 AC 53 ms
50,252 KB
testcase_13 AC 54 ms
50,084 KB
testcase_14 AC 53 ms
49,608 KB
testcase_15 AC 55 ms
49,980 KB
testcase_16 AC 54 ms
50,184 KB
testcase_17 AC 53 ms
50,040 KB
testcase_18 AC 53 ms
49,884 KB
testcase_19 AC 53 ms
49,720 KB
testcase_20 AC 53 ms
50,052 KB
testcase_21 AC 53 ms
50,204 KB
testcase_22 AC 53 ms
50,252 KB
testcase_23 AC 54 ms
49,996 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