結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー gomagoma
提出日時 2017-09-23 14:23:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 255 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-04-26 15:31:38
合計ジャッジ時間 5,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,352 KB
testcase_01 AC 123 ms
53,872 KB
testcase_02 AC 107 ms
52,648 KB
testcase_03 AC 125 ms
53,848 KB
testcase_04 AC 123 ms
54,104 KB
testcase_05 AC 112 ms
52,948 KB
testcase_06 AC 121 ms
53,956 KB
testcase_07 AC 119 ms
54,360 KB
testcase_08 AC 121 ms
53,984 KB
testcase_09 AC 124 ms
54,196 KB
testcase_10 AC 125 ms
54,240 KB
testcase_11 AC 123 ms
54,104 KB
testcase_12 AC 122 ms
53,900 KB
testcase_13 AC 114 ms
53,528 KB
testcase_14 AC 119 ms
53,888 KB
testcase_15 AC 115 ms
52,872 KB
testcase_16 AC 123 ms
53,860 KB
testcase_17 AC 123 ms
54,236 KB
testcase_18 AC 124 ms
53,848 KB
testcase_19 AC 123 ms
54,044 KB
testcase_20 AC 122 ms
54,144 KB
testcase_21 AC 126 ms
54,124 KB
testcase_22 AC 122 ms
54,096 KB
testcase_23 AC 104 ms
53,016 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 count = 0;
		for (int i = 1; i < n; i *= 2) {
			count++;
		}
		System.out.println(count);

	}
}
0