結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kuramukuramu
提出日時 2016-01-19 23:14:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-09-21 14:38:35
合計ジャッジ時間 4,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,028 KB
testcase_01 AC 55 ms
36,736 KB
testcase_02 AC 54 ms
37,236 KB
testcase_03 AC 55 ms
36,888 KB
testcase_04 AC 56 ms
37,088 KB
testcase_05 WA -
testcase_06 AC 55 ms
37,040 KB
testcase_07 AC 54 ms
37,236 KB
testcase_08 AC 55 ms
37,148 KB
testcase_09 AC 54 ms
36,904 KB
testcase_10 AC 53 ms
36,964 KB
testcase_11 AC 55 ms
37,204 KB
testcase_12 AC 54 ms
36,848 KB
testcase_13 AC 53 ms
36,824 KB
testcase_14 AC 55 ms
37,128 KB
testcase_15 AC 55 ms
37,148 KB
testcase_16 AC 54 ms
37,132 KB
testcase_17 AC 54 ms
36,848 KB
testcase_18 AC 55 ms
36,736 KB
testcase_19 AC 55 ms
37,120 KB
testcase_20 AC 54 ms
37,236 KB
testcase_21 AC 54 ms
37,104 KB
testcase_22 AC 56 ms
37,020 KB
testcase_23 AC 55 ms
36,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      String line = "";
	      int count = 0;
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  while(N >Math.pow(2, (count++ + 1)));
	    	  System.out.println(count);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0