結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kazapyon27kazapyon27
提出日時 2017-05-08 23:40:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 5,020 ms
コンパイル使用メモリ 86,056 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-09-14 17:36:33
合計ジャッジ時間 7,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,400 KB
testcase_01 AC 124 ms
41,636 KB
testcase_02 AC 119 ms
41,548 KB
testcase_03 AC 134 ms
41,384 KB
testcase_04 AC 138 ms
41,340 KB
testcase_05 AC 119 ms
41,108 KB
testcase_06 AC 135 ms
41,396 KB
testcase_07 AC 134 ms
41,148 KB
testcase_08 AC 132 ms
41,204 KB
testcase_09 AC 134 ms
41,408 KB
testcase_10 AC 135 ms
41,548 KB
testcase_11 AC 134 ms
40,980 KB
testcase_12 AC 132 ms
41,440 KB
testcase_13 AC 135 ms
41,648 KB
testcase_14 AC 136 ms
41,108 KB
testcase_15 AC 135 ms
41,120 KB
testcase_16 AC 136 ms
41,096 KB
testcase_17 AC 136 ms
41,640 KB
testcase_18 AC 136 ms
41,440 KB
testcase_19 AC 135 ms
41,376 KB
testcase_20 AC 135 ms
41,376 KB
testcase_21 AC 136 ms
41,540 KB
testcase_22 AC 134 ms
41,184 KB
testcase_23 AC 137 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.47 ポケットを叩くとビスケットが2倍*/
import java.util.*;
public class No47 {
	public static void main(String[] args) {
		try(Scanner input = new Scanner((System.in))){
			int want_eat=input.nextInt(),clap=0,work=want_eat;
			while(work>=2){
				work/=2;
				clap++;
			}
			if(want_eat!=Math.pow(2, clap)){
				clap++;
			}
			System.out.println(clap);
		}catch(Exception e){
			e.printStackTrace();
		}		
	}
}
0