結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:37:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 4,708 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-07-04 19:30:58
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,504 KB
testcase_01 AC 122 ms
41,232 KB
testcase_02 AC 115 ms
40,708 KB
testcase_03 AC 121 ms
41,188 KB
testcase_04 AC 109 ms
40,264 KB
testcase_05 AC 115 ms
40,788 KB
testcase_06 AC 108 ms
40,388 KB
testcase_07 AC 113 ms
40,168 KB
testcase_08 AC 129 ms
41,276 KB
testcase_09 AC 122 ms
41,316 KB
testcase_10 AC 130 ms
41,280 KB
testcase_11 AC 123 ms
41,184 KB
testcase_12 AC 126 ms
41,200 KB
testcase_13 AC 126 ms
41,384 KB
testcase_14 AC 123 ms
41,560 KB
testcase_15 AC 122 ms
41,312 KB
testcase_16 AC 119 ms
41,096 KB
testcase_17 AC 121 ms
41,228 KB
testcase_18 AC 120 ms
41,208 KB
testcase_19 AC 123 ms
41,340 KB
testcase_20 AC 123 ms
41,196 KB
testcase_21 AC 121 ms
41,448 KB
testcase_22 AC 130 ms
41,320 KB
testcase_23 AC 126 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Biscket {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt(), count, num = 1;
		s.close();
		for(count = 0;num < N; count++){
			if(num * 2 <= N){
				num *= 2;
			}else{
				num = N;
			}
		}
		System.out.println(count);

	}

}
0