結果
問題 | No.816 Beautiful tuples |
ユーザー | ohreitetsu |
提出日時 | 2019-04-19 22:16:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 809 ms |
コンパイル使用メモリ | 76,420 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-09-22 20:52:56 |
合計ジャッジ時間 | 4,606 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 459 ms
6,940 KB |
testcase_04 | AC | 400 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 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long LL; int main(int argc, char* argv[]) { LL A,B; cin>>A>>B; LL AB=A+B; vector<LL> C; C.push_back(AB); int Num2=0; while (AB%2==0){ Num2++; AB/=2; } LL even=1; for (LL i=1;i<=Num2;i++){ even*=2; C.push_back(even); } for (LL i=1;i<=AB;i+=2){ if (AB%i==0){ C.push_back(i); } } sort(C.begin(),C.end()); vector<LL> C1; for (int i=0;i<C.size();i++){ if ((A+C[i])%B==0 && (B+C[i])%A==0 && A!=C[i] && B!=C[i]){ C1.push_back(C[i]); } } if (C1.size()==0){ cout<<-1<<endl; }else{ cout<<C1[0]<<endl; } return 0; }