結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-13 22:53:04
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 551 bytes
コンパイル時間 3,378 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-28 10:44:34
合計ジャッジ時間 7,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,428 KB
testcase_01 AC 131 ms
41,196 KB
testcase_02 AC 128 ms
41,076 KB
testcase_03 AC 133 ms
41,256 KB
testcase_04 AC 132 ms
41,332 KB
testcase_05 RE -
testcase_06 AC 131 ms
40,988 KB
testcase_07 AC 132 ms
41,088 KB
testcase_08 AC 131 ms
41,084 KB
testcase_09 AC 134 ms
41,284 KB
testcase_10 AC 117 ms
39,968 KB
testcase_11 AC 135 ms
41,068 KB
testcase_12 AC 134 ms
41,080 KB
testcase_13 AC 134 ms
41,380 KB
testcase_14 AC 133 ms
40,988 KB
testcase_15 AC 130 ms
41,332 KB
testcase_16 AC 128 ms
41,332 KB
testcase_17 AC 129 ms
40,988 KB
testcase_18 AC 132 ms
41,296 KB
testcase_19 AC 116 ms
40,980 KB
testcase_20 AC 131 ms
41,088 KB
testcase_21 AC 134 ms
41,156 KB
testcase_22 AC 130 ms
41,240 KB
testcase_23 AC 131 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class PocketBiscuit{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        if(N == 1){
            System.out.println(0);
            System.exit(1);
        }
        int num_bis = 1;
        int num_hit = 0;
        while(true){
            if(num_bis*2<N){
                num_bis = num_bis*2;
                num_hit++;
            }else{
                System.out.println(num_hit+1);
                break;
            }
        }
    }
}
0