結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー きつねうどんきつねうどん
提出日時 2023-12-16 00:42:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-09-27 06:45:02
合計ジャッジ時間 8,008 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,972 KB
testcase_01 AC 139 ms
53,996 KB
testcase_02 AC 138 ms
54,244 KB
testcase_03 AC 140 ms
53,992 KB
testcase_04 AC 138 ms
53,980 KB
testcase_05 AC 134 ms
53,924 KB
testcase_06 AC 136 ms
53,956 KB
testcase_07 AC 135 ms
53,928 KB
testcase_08 AC 137 ms
53,724 KB
testcase_09 AC 139 ms
54,092 KB
testcase_10 AC 138 ms
53,888 KB
testcase_11 AC 139 ms
53,964 KB
testcase_12 AC 140 ms
54,076 KB
testcase_13 AC 137 ms
54,012 KB
testcase_14 AC 136 ms
54,240 KB
testcase_15 AC 143 ms
54,248 KB
testcase_16 AC 141 ms
54,068 KB
testcase_17 AC 138 ms
54,288 KB
testcase_18 AC 141 ms
53,880 KB
testcase_19 AC 138 ms
54,064 KB
testcase_20 AC 141 ms
53,952 KB
testcase_21 AC 137 ms
53,896 KB
testcase_22 AC 136 ms
53,848 KB
testcase_23 AC 137 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class WonderPocket {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        double value = Math.log(N) / Math.log(2.0);
        System.out.println((int)Math.ceil(value));
    }
}
0