結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Koketti1Koketti1
提出日時 2017-02-04 17:21:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-06-06 14:15:31
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,136 KB
testcase_01 AC 118 ms
40,960 KB
testcase_02 AC 113 ms
41,188 KB
testcase_03 AC 108 ms
40,248 KB
testcase_04 AC 115 ms
41,380 KB
testcase_05 AC 112 ms
41,092 KB
testcase_06 AC 110 ms
40,772 KB
testcase_07 AC 115 ms
41,216 KB
testcase_08 AC 117 ms
41,188 KB
testcase_09 AC 122 ms
41,124 KB
testcase_10 AC 126 ms
41,104 KB
testcase_11 AC 120 ms
41,336 KB
testcase_12 AC 121 ms
41,312 KB
testcase_13 AC 116 ms
41,204 KB
testcase_14 AC 118 ms
41,260 KB
testcase_15 AC 116 ms
41,176 KB
testcase_16 AC 119 ms
40,840 KB
testcase_17 AC 113 ms
40,368 KB
testcase_18 AC 119 ms
41,348 KB
testcase_19 AC 117 ms
41,052 KB
testcase_20 AC 105 ms
39,852 KB
testcase_21 AC 116 ms
40,940 KB
testcase_22 AC 114 ms
40,908 KB
testcase_23 AC 114 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int A = scanner.nextInt();
		boolean B = false;
		int ans = 0;
		
		while(A/2 != 0){
			if(A % 2 == 1) B = true;
			A = A/2;
			ans++;
		}
		if(B) ans++;
		System.out.println(ans);
		scanner.close();
	}
}
0