結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー ShotaroSuzuShotaroSuzu
提出日時 2020-05-19 18:46:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 3,264 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-10-01 22:57:09
合計ジャッジ時間 7,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,260 KB
testcase_01 AC 130 ms
54,428 KB
testcase_02 AC 129 ms
53,864 KB
testcase_03 AC 131 ms
54,152 KB
testcase_04 AC 129 ms
54,012 KB
testcase_05 AC 133 ms
54,024 KB
testcase_06 AC 126 ms
53,856 KB
testcase_07 AC 133 ms
53,788 KB
testcase_08 AC 129 ms
54,440 KB
testcase_09 AC 131 ms
54,152 KB
testcase_10 AC 132 ms
53,864 KB
testcase_11 AC 134 ms
54,144 KB
testcase_12 AC 138 ms
53,928 KB
testcase_13 AC 132 ms
53,988 KB
testcase_14 AC 132 ms
53,764 KB
testcase_15 AC 131 ms
54,032 KB
testcase_16 AC 134 ms
53,940 KB
testcase_17 AC 127 ms
53,952 KB
testcase_18 AC 131 ms
53,972 KB
testcase_19 AC 132 ms
54,160 KB
testcase_20 AC 131 ms
53,888 KB
testcase_21 AC 135 ms
54,044 KB
testcase_22 AC 132 ms
53,644 KB
testcase_23 AC 133 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.beginner.pocketbiscuit;

import java.util.Scanner;

public class PocketBiscuit {

	public static void main(String[] args) {
		new PocketBiscuit().execute();
	}

	private void execute() {
		long cookieNum = read();

		long hitNum = 0;
		while(Math.pow(2, hitNum + 1) < cookieNum) {
			hitNum++;
		}
		if(Math.pow(2, hitNum) == cookieNum) {
			System.out.println(hitNum);
		} else {
			System.out.println(hitNum + 1);
		}
	}

	private long read() {
		@SuppressWarnings("resource")
		Scanner sc = new Scanner(System.in);
		return sc.nextLong();
	}

}
0