結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー hideohideo
提出日時 2017-06-07 18:18:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-22 12:44:53
合計ジャッジ時間 5,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,008 KB
testcase_01 AC 125 ms
54,012 KB
testcase_02 AC 123 ms
54,136 KB
testcase_03 AC 125 ms
54,200 KB
testcase_04 AC 125 ms
54,136 KB
testcase_05 AC 127 ms
53,984 KB
testcase_06 AC 127 ms
54,128 KB
testcase_07 AC 126 ms
54,208 KB
testcase_08 AC 129 ms
54,240 KB
testcase_09 AC 125 ms
54,280 KB
testcase_10 AC 124 ms
54,304 KB
testcase_11 AC 130 ms
54,160 KB
testcase_12 AC 127 ms
54,052 KB
testcase_13 AC 126 ms
54,096 KB
testcase_14 AC 115 ms
53,096 KB
testcase_15 AC 114 ms
53,040 KB
testcase_16 AC 128 ms
54,132 KB
testcase_17 AC 127 ms
54,112 KB
testcase_18 AC 129 ms
53,932 KB
testcase_19 AC 129 ms
53,868 KB
testcase_20 AC 128 ms
53,880 KB
testcase_21 AC 130 ms
54,008 KB
testcase_22 AC 116 ms
53,004 KB
testcase_23 AC 128 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        
         Scanner s = new Scanner(System.in);
        int X = s.nextInt();
       int num = 0;
		int i = 0;
		while(true){
			num = (int)Math.pow(2 , i);
			if(num >= X){
				System.out.println(i);
				break;
			}
			i++;
		}
    }
}
0