結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー shinshin
提出日時 2022-05-17 07:33:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 3,966 ms
コンパイル使用メモリ 75,448 KB
実行使用メモリ 36,812 KB
最終ジャッジ日時 2024-09-15 01:06:13
合計ジャッジ時間 5,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,396 KB
testcase_01 AC 51 ms
36,640 KB
testcase_02 AC 51 ms
36,544 KB
testcase_03 AC 51 ms
36,568 KB
testcase_04 AC 51 ms
36,648 KB
testcase_05 AC 51 ms
36,528 KB
testcase_06 AC 52 ms
36,520 KB
testcase_07 AC 52 ms
36,544 KB
testcase_08 AC 51 ms
36,516 KB
testcase_09 AC 52 ms
36,468 KB
testcase_10 AC 51 ms
36,556 KB
testcase_11 AC 52 ms
36,432 KB
testcase_12 AC 51 ms
36,712 KB
testcase_13 AC 53 ms
36,660 KB
testcase_14 AC 51 ms
36,364 KB
testcase_15 AC 51 ms
36,700 KB
testcase_16 AC 52 ms
36,456 KB
testcase_17 AC 51 ms
36,812 KB
testcase_18 AC 52 ms
36,704 KB
testcase_19 AC 52 ms
36,540 KB
testcase_20 AC 53 ms
36,692 KB
testcase_21 AC 52 ms
36,648 KB
testcase_22 AC 53 ms
36,652 KB
testcase_23 AC 53 ms
36,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No47 {

	public static void main(String[] args) throws IOException{
		//ポケットを叩くとビスケットが2倍
		int N = Integer.parseInt(readStr()[0]) , s = 1 , count = 0;
		do {
			s = Math.min(s * 2, N);
			count += (s != 1 ? 1 : 0);
		}while(s < N);
		
		System.out.println(count);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0