結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー enuo-9enuo-9
提出日時 2016-09-15 14:30:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 3,364 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-11-17 06:04:33
合計ジャッジ時間 7,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,164 KB
testcase_01 AC 136 ms
41,120 KB
testcase_02 AC 136 ms
41,448 KB
testcase_03 AC 133 ms
41,304 KB
testcase_04 AC 133 ms
41,260 KB
testcase_05 AC 135 ms
41,380 KB
testcase_06 AC 135 ms
41,200 KB
testcase_07 AC 135 ms
41,376 KB
testcase_08 AC 135 ms
41,060 KB
testcase_09 AC 134 ms
41,184 KB
testcase_10 AC 136 ms
41,388 KB
testcase_11 AC 135 ms
41,424 KB
testcase_12 AC 135 ms
41,172 KB
testcase_13 AC 137 ms
41,392 KB
testcase_14 AC 136 ms
41,264 KB
testcase_15 AC 136 ms
41,380 KB
testcase_16 AC 138 ms
41,436 KB
testcase_17 AC 136 ms
41,104 KB
testcase_18 AC 135 ms
41,568 KB
testcase_19 AC 136 ms
41,600 KB
testcase_20 AC 138 ms
40,948 KB
testcase_21 AC 135 ms
41,104 KB
testcase_22 AC 135 ms
41,208 KB
testcase_23 AC 136 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No047 {
	public static void main(String args[]){
		//2.4.8.16.32.64.128....and 1

		Scanner sc = new Scanner(System.in);
		//欲しい数量
		int total = 0;
		//ビスケット数
		int biscuit = 1;
		int cnt = 0;

		total = sc.nextInt();

		//欲しい数量を上回ったらループ脱出
		//倍々していき、欲しい数量オーバーする一歩手前+幾つか取り出して倍にするで
		//任意の数に設定できるため
		while(biscuit<total){
			biscuit = biscuit*2;
			cnt++;
		}
		System.out.println(cnt);

	}
}
0