結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Mcpu3Mcpu3
提出日時 2018-08-10 23:17:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 233 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-09-23 05:59:46
合計ジャッジ時間 6,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,048 KB
testcase_01 AC 133 ms
53,836 KB
testcase_02 AC 132 ms
54,076 KB
testcase_03 AC 131 ms
53,664 KB
testcase_04 AC 133 ms
53,836 KB
testcase_05 AC 134 ms
54,064 KB
testcase_06 AC 132 ms
54,336 KB
testcase_07 AC 132 ms
53,628 KB
testcase_08 AC 134 ms
54,016 KB
testcase_09 AC 133 ms
53,872 KB
testcase_10 AC 139 ms
53,912 KB
testcase_11 AC 133 ms
54,348 KB
testcase_12 AC 132 ms
54,084 KB
testcase_13 AC 135 ms
53,792 KB
testcase_14 AC 135 ms
54,168 KB
testcase_15 AC 133 ms
53,852 KB
testcase_16 AC 133 ms
54,232 KB
testcase_17 AC 135 ms
53,820 KB
testcase_18 AC 135 ms
53,820 KB
testcase_19 AC 134 ms
53,932 KB
testcase_20 AC 132 ms
53,956 KB
testcase_21 AC 133 ms
53,900 KB
testcase_22 AC 135 ms
54,028 KB
testcase_23 AC 130 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner scan=new Scanner(System.in);
		int n=scan.nextInt(),i;
		scan.close();
		for(i=0;n>Math.pow(2, i);i++) ;
		System.out.print(i);
	}
}
0