結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kou6839kou6839
提出日時 2014-11-19 00:21:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 76,132 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2025-01-02 19:08:33
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,116 KB
testcase_01 AC 112 ms
54,400 KB
testcase_02 AC 109 ms
54,276 KB
testcase_03 AC 110 ms
54,260 KB
testcase_04 AC 109 ms
54,400 KB
testcase_05 AC 112 ms
54,268 KB
testcase_06 AC 111 ms
54,384 KB
testcase_07 AC 112 ms
54,416 KB
testcase_08 AC 122 ms
54,464 KB
testcase_09 AC 130 ms
54,276 KB
testcase_10 AC 124 ms
54,384 KB
testcase_11 AC 129 ms
54,400 KB
testcase_12 AC 120 ms
54,264 KB
testcase_13 AC 116 ms
54,292 KB
testcase_14 AC 124 ms
54,396 KB
testcase_15 AC 124 ms
54,380 KB
testcase_16 AC 125 ms
54,116 KB
testcase_17 AC 124 ms
54,512 KB
testcase_18 AC 120 ms
54,280 KB
testcase_19 AC 119 ms
54,368 KB
testcase_20 AC 115 ms
54,160 KB
testcase_21 AC 119 ms
54,276 KB
testcase_22 AC 131 ms
54,152 KB
testcase_23 AC 122 ms
54,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int ans=0;
		int a=1;
		while(a<n){
			ans++;
			a*=2;
			
		}
		System.out.println(ans);
	}
}	
0