結果
問題 | No.816 Beautiful tuples |
ユーザー | sggkshio |
提出日時 | 2019-10-02 07:56:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 641 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 84,056 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-03 05:51:11 |
合計ジャッジ時間 | 4,848 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,020 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 132 ms
6,816 KB |
testcase_03 | AC | 804 ms
6,816 KB |
testcase_04 | AC | 140 ms
6,820 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#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; }