結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー springspring
提出日時 2019-06-12 17:07:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-10-11 00:39:34
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,868 KB
testcase_01 AC 133 ms
53,848 KB
testcase_02 AC 141 ms
53,596 KB
testcase_03 AC 139 ms
53,904 KB
testcase_04 AC 132 ms
54,056 KB
testcase_05 AC 133 ms
54,040 KB
testcase_06 AC 137 ms
53,964 KB
testcase_07 AC 131 ms
53,936 KB
testcase_08 AC 148 ms
53,740 KB
testcase_09 AC 133 ms
53,912 KB
testcase_10 AC 137 ms
53,768 KB
testcase_11 AC 138 ms
53,540 KB
testcase_12 AC 135 ms
54,020 KB
testcase_13 AC 134 ms
54,012 KB
testcase_14 AC 132 ms
54,164 KB
testcase_15 AC 137 ms
54,040 KB
testcase_16 AC 136 ms
53,772 KB
testcase_17 AC 138 ms
53,992 KB
testcase_18 AC 136 ms
53,948 KB
testcase_19 AC 145 ms
53,896 KB
testcase_20 AC 137 ms
54,152 KB
testcase_21 AC 140 ms
54,172 KB
testcase_22 AC 136 ms
53,896 KB
testcase_23 AC 135 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int cookie = sc.nextInt();
		sc.close();
		int count = 0;
		int k = 0;
		int status = 0;
		int pocket = 1;
		while (k < 1) {
			pocket = pocket * 2;
			if (pocket < cookie) {
				count += 1;
				continue;
			} else if (pocket == cookie) {
				count += 1;
				k += 1;
				status = 1;
				break;
			} else {
				pocket = pocket / 2;
				k += 1;
			}
		}
		if (cookie == 1) {
			System.out.println(0);
		} else if (status == 0) {
			System.out.println(count + 1);
		} else if (status == 1) {
			System.out.println(count);
		}

	}// mainmethod

} // class
0