結果

問題 No.816 Beautiful tuples
ユーザー sggkshiosggkshio
提出日時 2019-10-02 08:04:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 1,500 ms
コード長 779 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 84,544 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-14 08:46:36
合計ジャッジ時間 1,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #



#define _USE_MATH_DEFINES
#include  <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
#include<math.h>
#include<iomanip>
#include<stdio.h>
#include <stdlib.h>
#include<stdio.h>
#include <queue>
#include<map>
#include <sstream>
#include<set>
#include<stack>

//#include<bits/stdc++.h>


using namespace std;	



int main() {

	long long int a, b;
	cin >> a >> b;

	for (long long int i = 1; i*i <= a + b; i++) {
		if ((a + b) % i)continue;
		if (i != a&&i != b && (a + i) % b == 0 && (b + i) % a == 0) {
			cout << i << endl;
			return 0;
		}
		long long int t = (a + b) / i;
		if (t != a&&t != b && (a + t) % b == 0 && (b + t) % a == 0) {
			cout << t << endl;
			return 0;
		}
	}
	cout << -1 << endl;
	



	return 0;




}
0