結果

問題 No.638 Sum of "not power of 2"
ユーザー elpheelphe
提出日時 2024-12-11 17:14:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 491 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 67,776 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-11 17:14:42
合計ジャッジ時間 1,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>

using namespace std;

constexpr uint16_t pop_count(uint64_t a) noexcept
{
	uint16_t ans = UINT16_C(0);
	for (; a != UINT64_C(0); a >>= UINT64_C(1))
		if (a & UINT64_C(1)) ++ans;

	return ans;
}

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint64_t N, i;
	cin >> N;

	for (i = 1; i != N; ++i)
		if (pop_count(i) != 1 && pop_count(N - i) != 1)
		{
			cout << i << ' ' << N - i << '\n';
			return 0;
		}

	cout << "-1\n";
	return 0;
}
0