結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,064 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 119 ms
54,104 KB
testcase_04 AC 106 ms
54,704 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 117 ms
54,292 KB
testcase_08 AC 115 ms
53,964 KB
testcase_09 AC 115 ms
54,408 KB
testcase_10 AC 119 ms
54,196 KB
testcase_11 AC 115 ms
54,068 KB
testcase_12 AC 121 ms
54,284 KB
testcase_13 AC 108 ms
53,444 KB
testcase_14 AC 116 ms
53,948 KB
testcase_15 AC 117 ms
53,852 KB
testcase_16 AC 109 ms
53,080 KB
testcase_17 AC 116 ms
54,200 KB
testcase_18 AC 106 ms
53,116 KB
testcase_19 AC 124 ms
53,972 KB
testcase_20 AC 120 ms
54,004 KB
testcase_21 AC 114 ms
54,288 KB
testcase_22 AC 102 ms
53,132 KB
testcase_23 AC 114 ms
53,920 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();

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

		System.out.println(count);
	}

}
0