結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー taichi_hobbiestaichi_hobbies
提出日時 2019-06-01 18:22:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 2,637 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-09-17 19:58:33
合計ジャッジ時間 6,320 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
53,908 KB
testcase_02 AC 100 ms
52,852 KB
testcase_03 AC 102 ms
52,924 KB
testcase_04 AC 98 ms
52,820 KB
testcase_05 WA -
testcase_06 AC 107 ms
53,764 KB
testcase_07 AC 108 ms
53,880 KB
testcase_08 AC 111 ms
53,968 KB
testcase_09 AC 107 ms
53,852 KB
testcase_10 AC 96 ms
52,464 KB
testcase_11 AC 107 ms
54,044 KB
testcase_12 AC 101 ms
53,752 KB
testcase_13 AC 110 ms
54,004 KB
testcase_14 AC 94 ms
52,264 KB
testcase_15 AC 113 ms
54,036 KB
testcase_16 AC 118 ms
54,144 KB
testcase_17 AC 111 ms
53,744 KB
testcase_18 AC 101 ms
54,012 KB
testcase_19 AC 100 ms
53,008 KB
testcase_20 AC 124 ms
54,004 KB
testcase_21 AC 119 ms
53,884 KB
testcase_22 AC 120 ms
53,984 KB
testcase_23 AC 126 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Question47 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		float fN = (float)N;

		int count = 0;
		do {
			fN /= 2;
			count++;
		} while (fN > 1);

		System.out.println(count);
	}

}
0