結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 14:24:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-23 23:47:11
合計ジャッジ時間 6,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,300 KB
testcase_01 AC 129 ms
54,216 KB
testcase_02 AC 130 ms
53,996 KB
testcase_03 AC 129 ms
54,048 KB
testcase_04 AC 127 ms
54,384 KB
testcase_05 AC 129 ms
54,124 KB
testcase_06 AC 128 ms
54,352 KB
testcase_07 AC 128 ms
54,124 KB
testcase_08 AC 127 ms
54,204 KB
testcase_09 AC 131 ms
54,076 KB
testcase_10 AC 131 ms
54,240 KB
testcase_11 AC 117 ms
52,904 KB
testcase_12 AC 130 ms
54,128 KB
testcase_13 AC 131 ms
53,980 KB
testcase_14 AC 131 ms
54,260 KB
testcase_15 AC 134 ms
54,108 KB
testcase_16 AC 133 ms
54,276 KB
testcase_17 AC 137 ms
54,060 KB
testcase_18 AC 133 ms
54,292 KB
testcase_19 AC 131 ms
54,232 KB
testcase_20 AC 132 ms
54,140 KB
testcase_21 AC 131 ms
54,012 KB
testcase_22 AC 138 ms
54,156 KB
testcase_23 AC 133 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		String S=Integer.toBinaryString(new Scanner(System.in).nextInt());
		System.out.println(S.length()-(S.matches("^10*$")?1:0));
	}
}
0