結果
問題 | No.816 Beautiful tuples |
ユーザー | ohreitetsu |
提出日時 | 2019-04-19 21:44:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 439 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 70,792 KB |
実行使用メモリ | 13,892 KB |
最終ジャッジ日時 | 2024-09-22 18:07:45 |
合計ジャッジ時間 | 5,773 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 291 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 795 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> 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; for (LL i=2;i<AB;i++){ if (AB%i==0){ C.push_back(i); } } vector<LL> C1; for (int i=0;i<C.size();i++){ if ((A+C[i])%B==0 && (B+C[i])%A==0){ C1.push_back(C[i]); } } if (C1.size()==0){ cout<<-1<<endl; }else{ cout<<C1[C1.size()-1]<<endl; } return 0; }