結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 16:42:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 73,472 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-11-28 16:22:08
合計ジャッジ時間 7,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,384 KB
testcase_01 AC 126 ms
41,720 KB
testcase_02 AC 134 ms
41,672 KB
testcase_03 AC 135 ms
41,424 KB
testcase_04 AC 136 ms
41,136 KB
testcase_05 AC 136 ms
41,796 KB
testcase_06 AC 134 ms
41,844 KB
testcase_07 AC 136 ms
41,352 KB
testcase_08 AC 127 ms
41,396 KB
testcase_09 AC 126 ms
41,544 KB
testcase_10 AC 126 ms
41,632 KB
testcase_11 AC 128 ms
41,644 KB
testcase_12 AC 122 ms
41,044 KB
testcase_13 AC 125 ms
41,444 KB
testcase_14 AC 115 ms
40,308 KB
testcase_15 AC 125 ms
41,484 KB
testcase_16 AC 124 ms
41,368 KB
testcase_17 AC 127 ms
41,496 KB
testcase_18 AC 125 ms
41,304 KB
testcase_19 AC 125 ms
41,536 KB
testcase_20 AC 128 ms
41,412 KB
testcase_21 AC 128 ms
41,712 KB
testcase_22 AC 126 ms
41,372 KB
testcase_23 AC 126 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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