結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mumucodermumucoder
提出日時 2018-10-28 22:52:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 67,244 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 22:34:23
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <cmath>

int main(int argc, char *argv[]) {
	int bisket_num = 0;
	std::cin >> bisket_num;

	uint32_t result = 0;
	for (int clap_num = 0; clap_num <= 32; clap_num++) {
		uint64_t powered_num = std::pow(2, clap_num);
		if (bisket_num > powered_num) {
			continue;
		}
		if (bisket_num == powered_num) {
			result = clap_num;
			break;
		}
		if (bisket_num < powered_num) {
			clap_num--;
			uint64_t base_num = std::pow(2, clap_num);
			uint64_t sub = bisket_num - base_num;
			if (sub % 2 == 0 || sub == 1) {
				result = clap_num + 1;
			} else {
				result = clap_num + 2;
			}	
			break;		
		}
	}

	std::cout << result << std::endl;

	return 0;
}
0