結果

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

テストケース

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

ソースコード

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<=rt;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