結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー l1267976l1267976
提出日時 2017-03-08 21:49:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 3,724 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-06-23 19:37:09
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,356 KB
testcase_01 AC 128 ms
54,144 KB
testcase_02 AC 128 ms
54,168 KB
testcase_03 AC 134 ms
54,128 KB
testcase_04 AC 134 ms
54,140 KB
testcase_05 AC 132 ms
54,028 KB
testcase_06 AC 132 ms
54,108 KB
testcase_07 AC 115 ms
53,140 KB
testcase_08 AC 133 ms
54,176 KB
testcase_09 AC 132 ms
54,300 KB
testcase_10 AC 131 ms
54,156 KB
testcase_11 AC 132 ms
53,968 KB
testcase_12 AC 129 ms
54,180 KB
testcase_13 AC 127 ms
54,268 KB
testcase_14 AC 133 ms
53,996 KB
testcase_15 AC 127 ms
54,296 KB
testcase_16 AC 129 ms
54,140 KB
testcase_17 AC 131 ms
53,976 KB
testcase_18 AC 132 ms
54,056 KB
testcase_19 AC 127 ms
53,736 KB
testcase_20 AC 128 ms
54,264 KB
testcase_21 AC 126 ms
54,196 KB
testcase_22 AC 127 ms
54,316 KB
testcase_23 AC 127 ms
53,960 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 result = doHit(1, n, 0);
        System.out.println(result);

        sc.close();
    }

    private static int doHit(int biskets, int want, int hitHnt) {
        if (biskets >= want) {
            return hitHnt;
        }

        hitHnt++;

        return doHit(biskets * 2, want, hitHnt);
    }

}
0