結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー tentententen
提出日時 2020-11-05 08:36:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 3,462 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-07-22 10:49:17
合計ジャッジ時間 5,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,120 KB
testcase_01 AC 116 ms
41,468 KB
testcase_02 AC 152 ms
40,932 KB
testcase_03 AC 106 ms
41,400 KB
testcase_04 AC 123 ms
41,204 KB
testcase_05 AC 106 ms
41,260 KB
testcase_06 AC 109 ms
41,580 KB
testcase_07 AC 120 ms
41,384 KB
testcase_08 AC 121 ms
41,424 KB
testcase_09 AC 123 ms
40,900 KB
testcase_10 AC 120 ms
41,032 KB
testcase_11 AC 120 ms
41,428 KB
testcase_12 AC 123 ms
41,076 KB
testcase_13 AC 109 ms
41,100 KB
testcase_14 AC 112 ms
41,292 KB
testcase_15 AC 114 ms
41,092 KB
testcase_16 AC 116 ms
41,484 KB
testcase_17 AC 118 ms
41,320 KB
testcase_18 AC 111 ms
41,116 KB
testcase_19 AC 100 ms
41,756 KB
testcase_20 AC 121 ms
41,360 KB
testcase_21 AC 103 ms
41,232 KB
testcase_22 AC 117 ms
41,168 KB
testcase_23 AC 115 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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