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