結果

問題 No.816 Beautiful tuples
ユーザー ohreitetsuohreitetsu
提出日時 2019-04-19 22:16:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 03:55:51
合計ジャッジ時間 4,805 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long LL;
int main(int argc, char* argv[])
{
	LL A,B;
	cin>>A>>B;
	LL AB=A+B;
	vector<LL> C;
	C.push_back(AB);
	int Num2=0;
	while (AB%2==0){
		Num2++;
		AB/=2;
	}
	LL even=1;
	for (LL i=1;i<=Num2;i++){
		even*=2;
		C.push_back(even);
	}
	for (LL i=1;i<=AB;i+=2){
		if (AB%i==0){
			C.push_back(i);
		}
	}

	sort(C.begin(),C.end());
	vector<LL> C1;
	for (int i=0;i<C.size();i++){
		if ((A+C[i])%B==0 && (B+C[i])%A==0 && A!=C[i] && B!=C[i]){
			C1.push_back(C[i]);
		}
	}
	if (C1.size()==0){
		cout<<-1<<endl;
	}else{
		cout<<C1[0]<<endl;
	}

	return 0;
}
0