結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー hnthnt
提出日時 2016-04-10 19:21:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-10-04 05:47:27
合計ジャッジ時間 6,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,940 KB
testcase_01 AC 104 ms
52,996 KB
testcase_02 AC 129 ms
53,948 KB
testcase_03 AC 117 ms
54,060 KB
testcase_04 AC 118 ms
53,944 KB
testcase_05 AC 105 ms
52,848 KB
testcase_06 AC 117 ms
54,328 KB
testcase_07 AC 117 ms
54,204 KB
testcase_08 AC 119 ms
54,068 KB
testcase_09 AC 121 ms
53,860 KB
testcase_10 AC 118 ms
54,036 KB
testcase_11 AC 103 ms
53,008 KB
testcase_12 AC 103 ms
52,788 KB
testcase_13 AC 113 ms
53,832 KB
testcase_14 AC 124 ms
54,060 KB
testcase_15 AC 108 ms
52,684 KB
testcase_16 AC 116 ms
53,916 KB
testcase_17 AC 119 ms
53,932 KB
testcase_18 AC 112 ms
54,120 KB
testcase_19 AC 101 ms
52,720 KB
testcase_20 AC 116 ms
54,140 KB
testcase_21 AC 101 ms
52,784 KB
testcase_22 AC 116 ms
54,164 KB
testcase_23 AC 98 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class no47 {

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

}
0