結果

問題 No.816 Beautiful tuples
ユーザー YGBKYGBK
提出日時 2019-05-23 23:57:41
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 747 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 11:41:39
合計ジャッジ時間 4,293 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 88 ms
4,348 KB
testcase_03 AC 266 ms
4,348 KB
testcase_04 AC 232 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<math.h>

using namespace std;

typedef long long ll;

void SetDivisor(vector<int>& vec,int n)
{
    int rt=static_cast<int>(sqrt(n));
    for(int i=1;i<=n;i++)
    {
        if(n%i==0)vec.push_back(i);
    }
    vec.push_back(n);
}

int main()
{
    vector<int> d;
    d.push_back(-1);
    int buf;
    int a,b;
    cin>>a>>b;
    buf=a+b;
    SetDivisor(d,buf);

    int index=0;
    for(int i=1;i<d.size();i++)
    {
        if((d[i]+b)%a==0)
        {
            if((a+d[i])%b==0)
            {
                if(d[i]!=a && d[i]!=b)
                {
                    index=i;
                    break;
                }
            }
        }
    }
    cout<<d[index]<<endl;

    return 0;
}
0