結果
問題 | No.2767 Add to Divide |
ユーザー | Kei |
提出日時 | 2024-05-31 21:56:34 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 800 bytes |
コンパイル時間 | 3,478 ms |
コンパイル使用メモリ | 276,820 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-31 21:56:41 |
合計ジャッジ時間 | 4,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const long long INF = 1e18; vector<int> factorize(long long d) { vector<int> res; for (long long j = 2; j * j <= d; j++) { if (d % j == 0) { res.push_back(j); while (d % j == 0) { d /= j; } } } if (d != 1) res.push_back(d); return res; } int main() { int T; cin >> T; while (T--) { long long A, B; cin >> A >> B; long long d = B - A; vector<int> c = factorize(d); int N = c.size(); long long ans = INF; for (int i = 0; i < N; i++) { long long a = (long long) (A + c[i] - 1) / c[i] * c[i]; long long diff = a - A; int b = B + diff; if (b % a == 0) { ans = min(ans, diff); } } if (ans == INF) ans = -1; cout << ans << '\n'; } }