結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー CotaSirogamiCotaSirogami
提出日時 2019-02-26 15:10:28
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 1,287 ms
コンパイル使用メモリ 139,224 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 18:40:31
合計ジャッジ時間 2,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
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 1 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 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef unsigned int uint;
using namespace std;

int n;
int ans = 0;

void solve(int num) {

	int bis = 1;
	while (num >= bis * 2 ) {
		bis *= 2;
		ans++;
	}
	if (num - bis == 0)
		return ;
	else {
		ans++;
		return ;
	}
}

int main() {
	cin >> n;

	if (n % 2 == 1) {
		ans++;
		n -= 1;
	}
	solve(n);
	cout << ans << endl;
}
0