結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 11:25:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 3,023 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 56,268 KB
最終ジャッジ日時 2024-07-06 19:37:32
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,088 KB
testcase_01 AC 118 ms
53,980 KB
testcase_02 AC 121 ms
53,880 KB
testcase_03 AC 111 ms
54,140 KB
testcase_04 AC 123 ms
53,904 KB
testcase_05 AC 119 ms
53,860 KB
testcase_06 AC 121 ms
54,216 KB
testcase_07 AC 127 ms
54,444 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 123 ms
54,132 KB
testcase_11 AC 119 ms
54,220 KB
testcase_12 AC 108 ms
52,772 KB
testcase_13 AC 119 ms
54,092 KB
testcase_14 AC 127 ms
54,120 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 116 ms
53,700 KB
testcase_18 AC 120 ms
54,040 KB
testcase_19 AC 119 ms
54,192 KB
testcase_20 AC 120 ms
54,060 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No47 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(); // 食べたいビスケットの枚数
		int x = 0; // ポケットを叩く回数
		int sum = 1; //持っているビスケットの枚数
		
		while((sum * 2) < N) {
			x++;
			sum *= 2;
		}
		
		if(N == sum) {
		}else if(N - sum == 1 || N % 2 == 0) {
			x++;
		}else {
			x += 2;
		}
		
		System.out.println(x);
	}
}
0