結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 01:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-04 03:30:09
合計ジャッジ時間 5,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,296 KB
testcase_01 AC 119 ms
41,424 KB
testcase_02 AC 111 ms
41,364 KB
testcase_03 AC 115 ms
41,508 KB
testcase_04 AC 113 ms
41,256 KB
testcase_05 AC 125 ms
41,088 KB
testcase_06 AC 128 ms
41,040 KB
testcase_07 AC 117 ms
40,988 KB
testcase_08 AC 102 ms
39,732 KB
testcase_09 AC 114 ms
41,080 KB
testcase_10 AC 113 ms
41,344 KB
testcase_11 AC 111 ms
41,120 KB
testcase_12 AC 100 ms
40,036 KB
testcase_13 AC 101 ms
39,852 KB
testcase_14 AC 115 ms
41,232 KB
testcase_15 AC 107 ms
41,200 KB
testcase_16 AC 98 ms
40,092 KB
testcase_17 AC 101 ms
39,920 KB
testcase_18 AC 106 ms
40,144 KB
testcase_19 AC 117 ms
41,580 KB
testcase_20 AC 103 ms
40,148 KB
testcase_21 AC 108 ms
41,256 KB
testcase_22 AC 99 ms
39,956 KB
testcase_23 AC 114 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int n = koko.nextInt();
       int bis = 1;
       int count = 0;
       for(int i=0; i<30; i++){
           if(n>bis){
           bis = bis*2;
           count = count + 1;
       }else{
           break;
       }
       }
       System.out.println(count);
       }
       
    }
0