結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mustonmuston
提出日時 2016-05-18 16:43:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-10-06 05:32:37
合計ジャッジ時間 5,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,076 KB
testcase_01 AC 127 ms
53,832 KB
testcase_02 AC 123 ms
53,852 KB
testcase_03 AC 123 ms
54,028 KB
testcase_04 AC 122 ms
53,876 KB
testcase_05 AC 115 ms
53,884 KB
testcase_06 AC 106 ms
52,712 KB
testcase_07 AC 125 ms
53,988 KB
testcase_08 AC 123 ms
54,000 KB
testcase_09 AC 128 ms
53,796 KB
testcase_10 AC 113 ms
53,532 KB
testcase_11 AC 121 ms
54,052 KB
testcase_12 AC 114 ms
53,792 KB
testcase_13 AC 117 ms
54,028 KB
testcase_14 AC 117 ms
54,020 KB
testcase_15 AC 118 ms
54,020 KB
testcase_16 AC 119 ms
53,804 KB
testcase_17 AC 116 ms
54,000 KB
testcase_18 AC 104 ms
52,748 KB
testcase_19 AC 124 ms
53,832 KB
testcase_20 AC 107 ms
52,700 KB
testcase_21 AC 106 ms
52,936 KB
testcase_22 AC 123 ms
54,424 KB
testcase_23 AC 120 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
/*yukicoder No.47 ポケットを叩くとビスケットが2倍*/
class No47{
  public static void main(String[] args){
    Scanner scan=new Scanner(System.in);
    int n = scan.nextInt();  //食べたいクッキーの枚数
    int cookie = 1;  //今のクッキーの枚数
    int hit = 0;  //叩いた回数
    //食べたい量までクッキーを増やす
    while(cookie<n){
      hit++;
      cookie *= 2;
    }
    System.out.println(hit);
  }
}
0