結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mits58mits58
提出日時 2016-05-05 14:31:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-05 09:36:49
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,732 KB
testcase_01 AC 105 ms
53,292 KB
testcase_02 AC 111 ms
53,836 KB
testcase_03 AC 94 ms
52,152 KB
testcase_04 AC 110 ms
53,884 KB
testcase_05 AC 111 ms
53,684 KB
testcase_06 AC 110 ms
53,964 KB
testcase_07 AC 106 ms
53,780 KB
testcase_08 AC 100 ms
52,820 KB
testcase_09 AC 101 ms
52,724 KB
testcase_10 AC 101 ms
52,516 KB
testcase_11 AC 94 ms
52,772 KB
testcase_12 AC 106 ms
53,588 KB
testcase_13 AC 106 ms
53,628 KB
testcase_14 AC 101 ms
52,660 KB
testcase_15 AC 112 ms
52,924 KB
testcase_16 AC 99 ms
52,456 KB
testcase_17 AC 120 ms
53,920 KB
testcase_18 AC 120 ms
54,196 KB
testcase_19 AC 123 ms
53,664 KB
testcase_20 AC 126 ms
54,072 KB
testcase_21 AC 124 ms
53,896 KB
testcase_22 AC 104 ms
52,552 KB
testcase_23 AC 108 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static int f(int x){
		if(x==1) return 0;
		for(int i=1;;i++){
			if(Math.pow(2, i)>=x){
				return i;
			}
		}
	}
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int n=sc.nextInt();
        	System.out.println(f(n));
        }
    }
}
0