結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー jp_stejp_ste
提出日時 2016-03-02 22:14:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-09-24 13:34:33
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,840 KB
testcase_01 AC 114 ms
52,844 KB
testcase_02 AC 126 ms
54,108 KB
testcase_03 AC 127 ms
54,104 KB
testcase_04 AC 126 ms
53,712 KB
testcase_05 AC 114 ms
52,884 KB
testcase_06 AC 130 ms
54,180 KB
testcase_07 AC 128 ms
53,796 KB
testcase_08 AC 125 ms
53,836 KB
testcase_09 AC 125 ms
54,080 KB
testcase_10 AC 129 ms
53,752 KB
testcase_11 AC 131 ms
54,216 KB
testcase_12 AC 131 ms
53,892 KB
testcase_13 AC 129 ms
54,208 KB
testcase_14 AC 114 ms
53,016 KB
testcase_15 AC 125 ms
54,044 KB
testcase_16 AC 130 ms
53,976 KB
testcase_17 AC 129 ms
54,208 KB
testcase_18 AC 127 ms
54,020 KB
testcase_19 AC 126 ms
54,084 KB
testcase_20 AC 129 ms
53,916 KB
testcase_21 AC 126 ms
54,144 KB
testcase_22 AC 131 ms
53,812 KB
testcase_23 AC 116 ms
52,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            long N = scan.nextInt();
            int ans = (int)Math.ceil(Math.log(N) / Math.log(2.0));
            System.out.println(ans);
        }
    }
}
0