結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー marumaru
提出日時 2017-09-25 07:45:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,745 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-11-14 12:54:58
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,128 KB
testcase_01 AC 139 ms
53,880 KB
testcase_02 AC 139 ms
53,888 KB
testcase_03 AC 139 ms
54,036 KB
testcase_04 AC 139 ms
54,144 KB
testcase_05 AC 140 ms
54,232 KB
testcase_06 AC 138 ms
54,232 KB
testcase_07 AC 139 ms
53,828 KB
testcase_08 AC 138 ms
54,244 KB
testcase_09 AC 139 ms
54,236 KB
testcase_10 AC 139 ms
53,868 KB
testcase_11 AC 133 ms
53,764 KB
testcase_12 AC 136 ms
54,024 KB
testcase_13 AC 138 ms
54,080 KB
testcase_14 AC 139 ms
54,028 KB
testcase_15 AC 138 ms
54,064 KB
testcase_16 AC 137 ms
53,980 KB
testcase_17 AC 137 ms
53,992 KB
testcase_18 AC 137 ms
54,004 KB
testcase_19 AC 137 ms
54,212 KB
testcase_20 AC 139 ms
54,164 KB
testcase_21 AC 138 ms
54,176 KB
testcase_22 AC 141 ms
54,040 KB
testcase_23 AC 140 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Bisuketto {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		final int N = scan.nextInt();
		int from = 0;
		int to = 0;
		int count = 0;
		for(int i=0;Math.pow(2,i)<N;i++) {
			count ++;
		}
			System.out.println(count);
	}


}
0