結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー S1hoS1ho
提出日時 2017-02-20 16:42:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 56,084 KB
最終ジャッジ日時 2024-06-09 14:56:21
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,208 KB
testcase_01 AC 101 ms
52,916 KB
testcase_02 AC 110 ms
53,860 KB
testcase_03 AC 112 ms
53,916 KB
testcase_04 AC 115 ms
54,240 KB
testcase_05 AC 125 ms
54,116 KB
testcase_06 AC 115 ms
52,672 KB
testcase_07 AC 116 ms
54,120 KB
testcase_08 AC 111 ms
53,840 KB
testcase_09 AC 115 ms
56,084 KB
testcase_10 AC 112 ms
53,764 KB
testcase_11 AC 112 ms
53,868 KB
testcase_12 AC 111 ms
54,180 KB
testcase_13 AC 104 ms
52,800 KB
testcase_14 AC 118 ms
53,796 KB
testcase_15 AC 123 ms
53,792 KB
testcase_16 AC 119 ms
54,148 KB
testcase_17 AC 106 ms
53,292 KB
testcase_18 AC 112 ms
54,104 KB
testcase_19 AC 99 ms
52,740 KB
testcase_20 AC 111 ms
54,176 KB
testcase_21 AC 116 ms
53,988 KB
testcase_22 AC 102 ms
52,944 KB
testcase_23 AC 113 ms
53,876 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();
        
        int bis = 1;
        
        int count = 0;
        
        //オーバーしない数まで二倍していく
        while((bis *= 2) <= n){
            
            count++;
                    
        }
        
        if(bis/2 == n){
            System.out.println(count);
        }else{
            count++;
            System.out.println(count);
        }
        
    }
}
0