結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー shinshin
提出日時 2022-05-17 07:28:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 3,721 ms
コンパイル使用メモリ 75,768 KB
実行使用メモリ 50,404 KB
最終ジャッジ日時 2024-09-15 00:57:01
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,388 KB
testcase_01 AC 54 ms
50,336 KB
testcase_02 AC 53 ms
49,920 KB
testcase_03 AC 53 ms
50,144 KB
testcase_04 AC 54 ms
49,884 KB
testcase_05 WA -
testcase_06 AC 53 ms
50,340 KB
testcase_07 AC 55 ms
49,796 KB
testcase_08 AC 53 ms
50,140 KB
testcase_09 AC 53 ms
50,404 KB
testcase_10 AC 55 ms
50,316 KB
testcase_11 AC 54 ms
50,224 KB
testcase_12 AC 54 ms
50,184 KB
testcase_13 AC 54 ms
50,224 KB
testcase_14 AC 55 ms
50,208 KB
testcase_15 AC 53 ms
50,020 KB
testcase_16 AC 55 ms
50,212 KB
testcase_17 AC 53 ms
50,180 KB
testcase_18 AC 54 ms
49,904 KB
testcase_19 AC 54 ms
50,384 KB
testcase_20 AC 53 ms
50,232 KB
testcase_21 AC 54 ms
49,988 KB
testcase_22 AC 54 ms
49,992 KB
testcase_23 AC 54 ms
50,176 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 += 1;
		}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