結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-27 17:07:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-16 04:10:37
合計ジャッジ時間 7,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,044 KB
testcase_01 AC 121 ms
53,884 KB
testcase_02 AC 128 ms
54,132 KB
testcase_03 AC 129 ms
54,108 KB
testcase_04 AC 122 ms
54,076 KB
testcase_05 AC 120 ms
53,968 KB
testcase_06 AC 121 ms
53,872 KB
testcase_07 AC 119 ms
53,808 KB
testcase_08 AC 121 ms
53,848 KB
testcase_09 AC 122 ms
53,848 KB
testcase_10 AC 108 ms
52,744 KB
testcase_11 AC 121 ms
54,260 KB
testcase_12 AC 119 ms
53,696 KB
testcase_13 AC 122 ms
53,988 KB
testcase_14 AC 125 ms
53,848 KB
testcase_15 AC 121 ms
53,968 KB
testcase_16 AC 122 ms
54,148 KB
testcase_17 AC 111 ms
53,320 KB
testcase_18 AC 126 ms
53,920 KB
testcase_19 AC 105 ms
52,952 KB
testcase_20 AC 107 ms
52,880 KB
testcase_21 AC 118 ms
53,764 KB
testcase_22 AC 123 ms
53,896 KB
testcase_23 AC 128 ms
53,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No47 {
	
	
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		 
		int N= sc.nextInt();
		
		int count=0;
		int k = 1;
		while(k<N){
			count++;
			k=k*2;
		}
			
			System.out.println(count);
		
	}

}
0