結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー m2543315647m2543315647
提出日時 2015-05-13 08:33:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 3,295 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-07-06 00:58:13
合計ジャッジ時間 6,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,204 KB
testcase_01 AC 101 ms
41,188 KB
testcase_02 AC 106 ms
41,300 KB
testcase_03 AC 102 ms
40,772 KB
testcase_04 AC 101 ms
41,132 KB
testcase_05 AC 116 ms
41,316 KB
testcase_06 AC 99 ms
41,172 KB
testcase_07 AC 120 ms
41,260 KB
testcase_08 AC 109 ms
39,808 KB
testcase_09 AC 110 ms
41,192 KB
testcase_10 AC 98 ms
41,140 KB
testcase_11 AC 108 ms
41,284 KB
testcase_12 AC 109 ms
41,564 KB
testcase_13 AC 99 ms
41,432 KB
testcase_14 AC 113 ms
41,300 KB
testcase_15 AC 122 ms
41,140 KB
testcase_16 AC 113 ms
41,268 KB
testcase_17 AC 113 ms
41,444 KB
testcase_18 AC 100 ms
41,048 KB
testcase_19 AC 119 ms
41,544 KB
testcase_20 AC 115 ms
41,216 KB
testcase_21 AC 114 ms
40,980 KB
testcase_22 AC 99 ms
41,516 KB
testcase_23 AC 112 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No47 {
public static void main (String[] args)
{
    Scanner sc = new Scanner(System.in);
    final int n = sc.nextInt();
    int i;
    for(i=0;Math.pow(2,i)<n;i++);
    System.out.println(i);
    }
}
0