結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー soujikisoujiki
提出日時 2015-04-27 15:14:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 3,340 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-07-05 04:53:06
合計ジャッジ時間 7,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,312 KB
testcase_01 AC 120 ms
40,188 KB
testcase_02 AC 131 ms
41,228 KB
testcase_03 AC 129 ms
41,212 KB
testcase_04 AC 132 ms
41,284 KB
testcase_05 AC 129 ms
41,004 KB
testcase_06 AC 131 ms
41,056 KB
testcase_07 AC 131 ms
41,228 KB
testcase_08 AC 133 ms
41,408 KB
testcase_09 AC 131 ms
41,168 KB
testcase_10 AC 133 ms
41,280 KB
testcase_11 AC 133 ms
41,300 KB
testcase_12 AC 136 ms
41,028 KB
testcase_13 AC 132 ms
41,120 KB
testcase_14 AC 131 ms
41,348 KB
testcase_15 AC 134 ms
41,240 KB
testcase_16 AC 135 ms
41,520 KB
testcase_17 AC 132 ms
41,096 KB
testcase_18 AC 131 ms
41,484 KB
testcase_19 AC 134 ms
41,264 KB
testcase_20 AC 134 ms
41,432 KB
testcase_21 AC 133 ms
41,428 KB
testcase_22 AC 134 ms
41,016 KB
testcase_23 AC 132 ms
41,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_47{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		boolean flag = true;
		if(N==1){
			System.out.println(0);
		}
		else{
			String str = Integer.toBinaryString(N);
			int count = str.length();
			for(int i=1;i<str.length();i++){
				char ch = str.charAt(i);
				if(ch == '1'){
					flag = false;
				}
			}
			if(flag){
				System.out.println(count-1);
			}
			else{
				System.out.println(count);
			}
		}
	}
}
0