結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー dazydazy
提出日時 2016-09-04 00:20:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,572 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-15 19:24:22
合計ジャッジ時間 8,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,076 KB
testcase_01 AC 143 ms
53,672 KB
testcase_02 AC 139 ms
54,012 KB
testcase_03 AC 139 ms
54,096 KB
testcase_04 AC 139 ms
54,304 KB
testcase_05 AC 140 ms
54,104 KB
testcase_06 AC 146 ms
54,012 KB
testcase_07 AC 142 ms
54,016 KB
testcase_08 AC 137 ms
54,052 KB
testcase_09 AC 140 ms
53,976 KB
testcase_10 AC 143 ms
53,604 KB
testcase_11 AC 142 ms
54,100 KB
testcase_12 AC 144 ms
53,968 KB
testcase_13 AC 144 ms
53,980 KB
testcase_14 AC 141 ms
53,880 KB
testcase_15 AC 145 ms
53,712 KB
testcase_16 AC 142 ms
53,780 KB
testcase_17 AC 145 ms
53,816 KB
testcase_18 AC 141 ms
53,892 KB
testcase_19 AC 144 ms
54,108 KB
testcase_20 AC 143 ms
53,912 KB
testcase_21 AC 144 ms
54,220 KB
testcase_22 AC 144 ms
53,692 KB
testcase_23 AC 146 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        if (N < 1||N > 100000000) System.exit(1);

        int tap = 0;
        int tmp = 1;
        while (N >= tmp * 2){
            tmp *= 2;
            tap++;
        }
        N -= tmp;
        if (N!=0) tap++;
        System.out.println(tap);
    }
}
0