結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー dogwood0424dogwood0424
提出日時 2017-11-30 13:19:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 6,269 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-05-05 16:13:00
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,284 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 124 ms
41,672 KB
testcase_04 AC 124 ms
41,556 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 120 ms
41,316 KB
testcase_08 AC 126 ms
41,536 KB
testcase_09 AC 117 ms
41,072 KB
testcase_10 AC 118 ms
41,176 KB
testcase_11 AC 129 ms
41,720 KB
testcase_12 AC 109 ms
40,272 KB
testcase_13 AC 101 ms
39,868 KB
testcase_14 AC 118 ms
41,672 KB
testcase_15 AC 116 ms
40,988 KB
testcase_16 AC 116 ms
41,536 KB
testcase_17 AC 122 ms
41,360 KB
testcase_18 AC 125 ms
41,348 KB
testcase_19 AC 119 ms
42,812 KB
testcase_20 AC 113 ms
41,036 KB
testcase_21 AC 104 ms
40,416 KB
testcase_22 AC 113 ms
40,060 KB
testcase_23 AC 103 ms
39,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No47 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int cnt = 0;
		while(N>=1) {
			N = N/2;
			cnt++;
		}
		System.out.println(cnt);
	}

}
0