結果

問題 No.1113 二つの整数 / Two Integers
ユーザー elpheelphe
提出日時 2024-11-09 12:17:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 824 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 67,200 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 12:17:31
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdint>

using namespace std;

template<typename T1, typename T2> constexpr decltype((T1)1 % (T2)1) GCD(const T1 a, const T2 b) noexcept
{
	decltype((T1)1 % (T2)1) x = a, y = b, z = 0;
	while (y != 0) z = x % y, x = y, y = z;
	return x;
}

template<typename T1, typename T2> constexpr bool is_squared(const T1 target, T2 l, T2 r) noexcept
{
	while (l < r)
	{
		const T2 c = l + (r - l) / 2;
		const decltype((T1)1 * (T2)1) c_squared = static_cast<decltype((T1)1 * (T2)1)>(c) * c;
		if (c_squared < target) l = c + 1;
		else if (c_squared != target) r = c;
		else return true;
	}
	return false;
}

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

	uint64_t A, B;
	cin >> A >> B;

	if (is_squared(GCD(A, B), 1, 1'000'000'001)) cout << "Odd\n";
	else cout << "Even\n";

	return 0;
}
0