結果

問題 No.816 Beautiful tuples
ユーザー sggkshiosggkshio
提出日時 2019-10-02 07:56:30
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 641 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 84,204 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-04-14 08:46:32
合計ジャッジ時間 5,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 <= 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;
		}
	}
	cout << -1 << endl;
	



	return 0;




}
0