結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー jimanojimano
提出日時 2015-12-27 17:38:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-09-19 07:25:13
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,864 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 120 ms
54,048 KB
testcase_04 AC 123 ms
54,252 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 121 ms
53,876 KB
testcase_08 AC 123 ms
53,856 KB
testcase_09 AC 118 ms
53,840 KB
testcase_10 AC 124 ms
54,224 KB
testcase_11 AC 123 ms
54,328 KB
testcase_12 AC 123 ms
54,036 KB
testcase_13 AC 124 ms
54,164 KB
testcase_14 AC 121 ms
54,140 KB
testcase_15 AC 121 ms
54,124 KB
testcase_16 AC 127 ms
54,132 KB
testcase_17 AC 109 ms
53,024 KB
testcase_18 AC 123 ms
54,200 KB
testcase_19 AC 111 ms
53,084 KB
testcase_20 AC 121 ms
53,916 KB
testcase_21 AC 124 ms
54,240 KB
testcase_22 AC 120 ms
54,184 KB
testcase_23 AC 120 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package lv1;
import java.util.Scanner;

public class No56 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int cnt = 1;
		int result = 0;
		
		while(cnt <= N){
			cnt = cnt * 2;
			result++;
		}
		
		System.out.println(result);
	}
}
0