結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 岡部友輝岡部友輝
提出日時 2020-12-16 11:39:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-09-20 04:47:41
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,420 KB
testcase_01 AC 105 ms
39,920 KB
testcase_02 AC 109 ms
40,044 KB
testcase_03 AC 107 ms
39,860 KB
testcase_04 AC 117 ms
41,184 KB
testcase_05 AC 116 ms
41,260 KB
testcase_06 AC 116 ms
41,144 KB
testcase_07 AC 119 ms
41,260 KB
testcase_08 AC 120 ms
41,504 KB
testcase_09 AC 107 ms
40,092 KB
testcase_10 AC 118 ms
41,192 KB
testcase_11 AC 121 ms
41,332 KB
testcase_12 AC 108 ms
39,836 KB
testcase_13 AC 123 ms
41,088 KB
testcase_14 AC 124 ms
41,272 KB
testcase_15 AC 108 ms
39,904 KB
testcase_16 AC 120 ms
41,140 KB
testcase_17 AC 118 ms
41,124 KB
testcase_18 AC 126 ms
40,976 KB
testcase_19 AC 103 ms
39,816 KB
testcase_20 AC 121 ms
41,116 KB
testcase_21 AC 120 ms
41,128 KB
testcase_22 AC 120 ms
41,420 KB
testcase_23 AC 123 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int result = 0;
		int bit = 1;
		while (n > bit) {
		    bit <<= 1;
		    result++;
		}
		System.out.println(result);
	}
}
0