結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー gmvalentino8gmvalentino8
提出日時 2014-11-23 17:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 2,946 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-06-10 21:39:19
合計ジャッジ時間 6,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,704 KB
testcase_01 AC 116 ms
41,128 KB
testcase_02 AC 102 ms
39,880 KB
testcase_03 AC 100 ms
40,184 KB
testcase_04 AC 118 ms
41,224 KB
testcase_05 AC 101 ms
41,360 KB
testcase_06 AC 97 ms
41,492 KB
testcase_07 AC 103 ms
40,700 KB
testcase_08 AC 113 ms
41,228 KB
testcase_09 AC 101 ms
40,088 KB
testcase_10 AC 102 ms
41,136 KB
testcase_11 AC 99 ms
40,004 KB
testcase_12 AC 115 ms
41,348 KB
testcase_13 AC 113 ms
41,384 KB
testcase_14 AC 100 ms
40,000 KB
testcase_15 AC 113 ms
41,524 KB
testcase_16 AC 102 ms
40,008 KB
testcase_17 AC 108 ms
41,324 KB
testcase_18 AC 99 ms
39,996 KB
testcase_19 AC 101 ms
40,108 KB
testcase_20 AC 111 ms
41,376 KB
testcase_21 AC 95 ms
39,988 KB
testcase_22 AC 120 ms
41,472 KB
testcase_23 AC 114 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Exercise {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
	    int n = sc.nextInt();
	    double a = Math.log(n)/Math.log(2);
	    System.out.print((int)Math.ceil(a));
	}
}
0