結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 19:32:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 3,322 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-11-17 13:50:07
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,836 KB
testcase_01 AC 52 ms
37,092 KB
testcase_02 AC 52 ms
36,860 KB
testcase_03 AC 53 ms
36,920 KB
testcase_04 AC 53 ms
37,084 KB
testcase_05 AC 52 ms
37,008 KB
testcase_06 AC 52 ms
36,836 KB
testcase_07 AC 52 ms
36,560 KB
testcase_08 AC 53 ms
36,800 KB
testcase_09 AC 53 ms
36,856 KB
testcase_10 AC 52 ms
36,848 KB
testcase_11 AC 53 ms
36,952 KB
testcase_12 AC 57 ms
36,896 KB
testcase_13 AC 53 ms
36,796 KB
testcase_14 AC 53 ms
37,100 KB
testcase_15 AC 53 ms
36,884 KB
testcase_16 AC 53 ms
36,960 KB
testcase_17 AC 54 ms
36,580 KB
testcase_18 AC 53 ms
36,672 KB
testcase_19 AC 57 ms
36,976 KB
testcase_20 AC 52 ms
37,068 KB
testcase_21 AC 54 ms
37,080 KB
testcase_22 AC 54 ms
36,884 KB
testcase_23 AC 54 ms
36,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00047 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		try {
			long input = Long.parseLong(bufferedReader.readLine());

			int cnt = 0;
			for (int biscuits = 1 ; biscuits < input ; biscuits *= 2) {
				cnt++;
			}
			System.out.println(cnt);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}
0