結果

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

テストケース

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

ソースコード

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 + 1 < 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));

	return 0;
}
0