結果

問題 No.2125 Inverse Sum
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-07 14:48:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 1,482 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 217,780 KB
実行使用メモリ 79,972 KB
最終ジャッジ日時 2024-05-07 14:48:56
合計ジャッジ時間 4,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 326 ms
79,972 KB
testcase_28 AC 162 ms
42,080 KB
testcase_29 AC 167 ms
43,104 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 164 ms
42,084 KB
testcase_32 AC 37 ms
19,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    long long p, q;
    cin >> p >> q;
    long long g = gcd(p, q);
    p /= g;
    q /= g;
    map<long long, int> fac;
    {
        long long t = q;
        for (long long i = 2; i * i <= t; i++) {
            while (t % i == 0) {
                fac[i] += 2;
                t /= i;
            }
        }
        if (t > 1) {
            fac[t] += 2;
        }
    }
    vector<long long> divs;
    divs.push_back(1);
    for (auto &i : fac) {
        int sz = divs.size();
        for (int j = 0; j < sz; j++) {
            long long cur = 1;
            for (int k = 0; k < i.second; k++) {
                cur *= i.first;
                divs.push_back(divs[j] * cur);
                divs.push_back(-divs[j] * cur);
            }
        }
    }
    vector<pair<long long, long long>> ans;
    for (long long d : divs) {
        if (d + q <= 0 || (d + q) % p != 0) {
            continue;
        }
        long long n = (d + q) / p;
        long long e = q * q / d;
        if (e + q <= 0 || (e + q) % p != 0) {
            continue;
        }
        long long m = (e + q) / p;
        ans.push_back({n, m});
    }
    sort(ans.begin(), ans.end());
    ans.erase(unique(ans.begin(), ans.end()), ans.end());
    cout << ans.size() << "\n";
    for (auto [n, m] : ans) {
        cout << n << " " << m << "\n";
    }
}
0