結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー GBGB
提出日時 2018-04-10 10:10:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-26 20:52:33
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,952 KB
testcase_01 AC 127 ms
53,940 KB
testcase_02 AC 128 ms
54,332 KB
testcase_03 AC 123 ms
53,968 KB
testcase_04 AC 124 ms
53,952 KB
testcase_05 WA -
testcase_06 AC 127 ms
54,228 KB
testcase_07 AC 126 ms
53,888 KB
testcase_08 AC 128 ms
54,012 KB
testcase_09 AC 128 ms
54,156 KB
testcase_10 AC 127 ms
54,120 KB
testcase_11 AC 128 ms
54,232 KB
testcase_12 AC 130 ms
54,048 KB
testcase_13 AC 125 ms
53,844 KB
testcase_14 AC 127 ms
54,296 KB
testcase_15 AC 128 ms
54,196 KB
testcase_16 AC 128 ms
54,092 KB
testcase_17 AC 128 ms
54,216 KB
testcase_18 AC 127 ms
54,340 KB
testcase_19 AC 129 ms
53,764 KB
testcase_20 AC 131 ms
53,928 KB
testcase_21 AC 127 ms
53,992 KB
testcase_22 AC 126 ms
53,800 KB
testcase_23 AC 127 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) throws IOException{
    Scanner scan=new Scanner(System.in);
    int n=Integer.parseInt(scan.next());
    int count=0;
    //nが2の何乗と2の何乗との間にあるかしらべる
    do{
      count++;
    }while(Math.pow(2,count)<n);
    System.out.println(count);
  }
}
0