結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mits58mits58
提出日時 2016-05-05 14:30:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-10-05 09:36:14
合計ジャッジ時間 5,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,060 KB
testcase_01 AC 113 ms
54,000 KB
testcase_02 AC 103 ms
52,928 KB
testcase_03 AC 110 ms
53,348 KB
testcase_04 AC 114 ms
53,472 KB
testcase_05 WA -
testcase_06 AC 111 ms
54,040 KB
testcase_07 AC 112 ms
53,860 KB
testcase_08 AC 105 ms
53,904 KB
testcase_09 AC 114 ms
53,728 KB
testcase_10 AC 116 ms
53,920 KB
testcase_11 AC 115 ms
54,048 KB
testcase_12 AC 112 ms
53,584 KB
testcase_13 AC 110 ms
52,900 KB
testcase_14 AC 119 ms
53,508 KB
testcase_15 AC 99 ms
52,860 KB
testcase_16 AC 101 ms
52,856 KB
testcase_17 AC 99 ms
52,852 KB
testcase_18 AC 99 ms
53,008 KB
testcase_19 AC 109 ms
53,956 KB
testcase_20 AC 103 ms
52,760 KB
testcase_21 AC 108 ms
52,488 KB
testcase_22 AC 109 ms
53,808 KB
testcase_23 AC 115 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static int f(int x){
		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