結果

問題 No.816 Beautiful tuples
ユーザー ohreitetsuohreitetsu
提出日時 2019-04-19 21:48:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 69,620 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-10-24 01:24:41
合計ジャッジ時間 5,577 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 293 ms
4,348 KB
testcase_03 WA -
testcase_04 AC 794 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>
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;
	for (LL i=1;i<=AB;i++){
		if (AB%i==0){
			C.push_back(i);
		}
	}
	vector<LL> C1;
	for (int i=0;i<C.size();i++){
		if ((A+C[i])%B==0 && (B+C[i])%A==0){
			C1.push_back(C[i]);
		}
	}
	if (C1.size()==0){
		cout<<-1<<endl;
	}else{
		cout<<C1[0]<<endl;
	}

	return 0;
}
0