結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-10 13:08:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 268 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-10-05 13:28:03
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,344 KB
testcase_01 AC 125 ms
41,000 KB
testcase_02 AC 115 ms
40,248 KB
testcase_03 AC 126 ms
40,980 KB
testcase_04 AC 126 ms
41,220 KB
testcase_05 AC 126 ms
41,460 KB
testcase_06 AC 129 ms
41,284 KB
testcase_07 AC 127 ms
41,324 KB
testcase_08 AC 127 ms
41,264 KB
testcase_09 AC 146 ms
41,416 KB
testcase_10 AC 126 ms
41,664 KB
testcase_11 AC 128 ms
41,280 KB
testcase_12 AC 127 ms
41,000 KB
testcase_13 AC 130 ms
41,120 KB
testcase_14 AC 128 ms
41,416 KB
testcase_15 AC 128 ms
41,224 KB
testcase_16 AC 127 ms
41,224 KB
testcase_17 AC 124 ms
41,160 KB
testcase_18 AC 129 ms
41,316 KB
testcase_19 AC 124 ms
41,284 KB
testcase_20 AC 127 ms
40,880 KB
testcase_21 AC 129 ms
41,344 KB
testcase_22 AC 116 ms
40,124 KB
testcase_23 AC 127 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki5 {
	
	public static void main(String[] args) {
	
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int count = 0;
		int x = 1;
		while(x<n){
			x = x + x;
			count++;
		}
		System.out.println(count);
	}
}
0