結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kaoetayakaoetaya
提出日時 2016-11-08 14:30:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 4,065 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2024-11-25 04:51:10
合計ジャッジ時間 8,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,928 KB
testcase_01 AC 113 ms
53,528 KB
testcase_02 AC 119 ms
53,872 KB
testcase_03 AC 123 ms
53,636 KB
testcase_04 AC 115 ms
53,704 KB
testcase_05 AC 112 ms
53,660 KB
testcase_06 AC 113 ms
53,508 KB
testcase_07 AC 106 ms
52,364 KB
testcase_08 AC 116 ms
53,924 KB
testcase_09 AC 103 ms
52,344 KB
testcase_10 AC 110 ms
53,964 KB
testcase_11 AC 115 ms
53,852 KB
testcase_12 AC 112 ms
53,812 KB
testcase_13 AC 116 ms
53,668 KB
testcase_14 AC 126 ms
54,008 KB
testcase_15 AC 121 ms
52,920 KB
testcase_16 AC 108 ms
52,748 KB
testcase_17 AC 119 ms
53,748 KB
testcase_18 AC 116 ms
54,060 KB
testcase_19 AC 123 ms
53,996 KB
testcase_20 AC 122 ms
53,516 KB
testcase_21 AC 124 ms
53,800 KB
testcase_22 AC 125 ms
53,648 KB
testcase_23 AC 120 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);

		int a = s.nextInt(),cnt=0;
		for(int i=1;i<a;i*=2) cnt++;
		System.out.println(cnt);
    }
}
0