結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー wf4n9wf4n9
提出日時 2017-10-12 17:57:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-11-17 10:53:11
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,968 KB
testcase_01 AC 120 ms
41,028 KB
testcase_02 AC 118 ms
41,192 KB
testcase_03 AC 116 ms
40,900 KB
testcase_04 AC 122 ms
41,020 KB
testcase_05 AC 118 ms
41,052 KB
testcase_06 AC 118 ms
41,212 KB
testcase_07 AC 120 ms
41,220 KB
testcase_08 AC 109 ms
40,024 KB
testcase_09 AC 122 ms
41,292 KB
testcase_10 AC 109 ms
40,148 KB
testcase_11 AC 122 ms
40,980 KB
testcase_12 AC 117 ms
41,100 KB
testcase_13 AC 118 ms
39,936 KB
testcase_14 AC 120 ms
40,884 KB
testcase_15 AC 117 ms
41,012 KB
testcase_16 AC 122 ms
40,864 KB
testcase_17 AC 117 ms
41,104 KB
testcase_18 AC 114 ms
40,756 KB
testcase_19 AC 120 ms
40,192 KB
testcase_20 AC 122 ms
41,256 KB
testcase_21 AC 118 ms
40,892 KB
testcase_22 AC 118 ms
41,164 KB
testcase_23 AC 134 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String... args) {
		Scanner sc = new Scanner(System.in);

		int biscuitsQty = sc.nextInt();
		System.out.println(calcHitPocket(biscuitsQty));
	}

	public static int calcHitPocket(final int biscuitsQty) {
		int hitQty = 0;
		int currentBiscuitsQty = 1;

		while (currentBiscuitsQty < biscuitsQty) {
			currentBiscuitsQty *= 2;
			hitQty++;
		}
		return hitQty;
	}
}
0