結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 06:00:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 3,413 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2024-07-04 01:35:09
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,568 KB
testcase_01 AC 131 ms
53,960 KB
testcase_02 AC 131 ms
54,564 KB
testcase_03 AC 120 ms
53,364 KB
testcase_04 AC 132 ms
54,280 KB
testcase_05 AC 132 ms
54,256 KB
testcase_06 AC 131 ms
53,956 KB
testcase_07 AC 132 ms
54,300 KB
testcase_08 AC 129 ms
54,604 KB
testcase_09 AC 131 ms
53,684 KB
testcase_10 AC 133 ms
54,084 KB
testcase_11 AC 131 ms
54,224 KB
testcase_12 AC 129 ms
54,000 KB
testcase_13 AC 136 ms
54,396 KB
testcase_14 AC 132 ms
54,100 KB
testcase_15 AC 129 ms
53,796 KB
testcase_16 AC 131 ms
54,140 KB
testcase_17 AC 134 ms
54,600 KB
testcase_18 AC 135 ms
54,472 KB
testcase_19 AC 131 ms
54,096 KB
testcase_20 AC 130 ms
54,488 KB
testcase_21 AC 128 ms
53,836 KB
testcase_22 AC 130 ms
54,032 KB
testcase_23 AC 130 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.47 ポケットを叩くとビスケットが2倍

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No47 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        double n = sc.nextInt();
        int cnt = 0;
        while (n > 1) {
            n = ceil(n/2);
            cnt++;
        }
        out.println(cnt);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0