結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,676 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 116 ms
41,028 KB
testcase_04 AC 114 ms
41,408 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 117 ms
40,096 KB
testcase_08 AC 116 ms
39,936 KB
testcase_09 AC 106 ms
41,064 KB
testcase_10 AC 104 ms
41,252 KB
testcase_11 AC 102 ms
41,192 KB
testcase_12 AC 103 ms
41,344 KB
testcase_13 AC 112 ms
41,476 KB
testcase_14 AC 115 ms
41,104 KB
testcase_15 AC 116 ms
41,172 KB
testcase_16 AC 117 ms
41,432 KB
testcase_17 AC 104 ms
41,644 KB
testcase_18 AC 118 ms
41,188 KB
testcase_19 AC 120 ms
41,136 KB
testcase_20 AC 130 ms
41,052 KB
testcase_21 AC 116 ms
41,120 KB
testcase_22 AC 120 ms
41,068 KB
testcase_23 AC 119 ms
41,052 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