結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mura40424mura40424
提出日時 2014-11-23 18:30:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 4,075 ms
コンパイル使用メモリ 76,912 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2025-01-02 20:28:17
合計ジャッジ時間 8,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,420 KB
testcase_01 AC 127 ms
41,560 KB
testcase_02 AC 128 ms
41,800 KB
testcase_03 AC 129 ms
41,420 KB
testcase_04 AC 126 ms
41,780 KB
testcase_05 AC 128 ms
41,432 KB
testcase_06 AC 126 ms
41,540 KB
testcase_07 AC 126 ms
41,472 KB
testcase_08 AC 124 ms
41,680 KB
testcase_09 AC 128 ms
41,428 KB
testcase_10 AC 129 ms
41,548 KB
testcase_11 AC 128 ms
41,656 KB
testcase_12 AC 126 ms
41,716 KB
testcase_13 AC 123 ms
41,340 KB
testcase_14 AC 126 ms
41,472 KB
testcase_15 AC 130 ms
41,800 KB
testcase_16 AC 132 ms
41,676 KB
testcase_17 AC 129 ms
41,684 KB
testcase_18 AC 129 ms
41,540 KB
testcase_19 AC 127 ms
41,684 KB
testcase_20 AC 126 ms
41,656 KB
testcase_21 AC 124 ms
41,812 KB
testcase_22 AC 124 ms
41,796 KB
testcase_23 AC 125 ms
41,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class CopyOfMain {
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		int N = S.nextInt();
		
		if(N==1)
			System.out.println(0);
		else
			System.out.println(Integer.toBinaryString(N-1).length());
	}
}
0