結果

問題 No.1006 Share an Integer
ユーザー MisterMister
提出日時 2020-03-06 21:37:23
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 137,984 KB
実行使用メモリ 11,088 KB
最終ジャッジ日時 2024-05-07 20:36:45
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
10,860 KB
testcase_01 AC 70 ms
11,020 KB
testcase_02 AC 76 ms
10,972 KB
testcase_03 AC 74 ms
11,016 KB
testcase_04 AC 73 ms
10,952 KB
testcase_05 AC 72 ms
10,884 KB
testcase_06 AC 72 ms
10,876 KB
testcase_07 AC 71 ms
11,088 KB
testcase_08 AC 71 ms
10,856 KB
testcase_09 AC 75 ms
10,864 KB
testcase_10 AC 73 ms
10,884 KB
testcase_11 AC 76 ms
10,856 KB
testcase_12 AC 80 ms
10,928 KB
testcase_13 AC 81 ms
11,064 KB
testcase_14 AC 80 ms
10,852 KB
testcase_15 AC 79 ms
10,924 KB
testcase_16 AC 78 ms
11,036 KB
testcase_17 AC 76 ms
10,996 KB
testcase_18 AC 78 ms
10,940 KB
testcase_19 AC 80 ms
10,924 KB
testcase_20 AC 80 ms
11,000 KB
testcase_21 AC 80 ms
10,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <algorithm>
#include <vector>

constexpr int X = 2000000;
std::vector<int> pcnt(X + 1, 1);

void init() {
    for (int p = 2; p <= X; ++p) {
        if (pcnt[p] > 1) continue;

        for (int q = p; q <= X; q += p) {
            int cnt = 0, x = q;
            while (x % p == 0) {
                x /= p;
                ++cnt;
            }
            pcnt[q] *= cnt + 1;
        }
    }
}

void solve() {
    int x;
    std::cin >> x;

    int dmin = x;
    std::vector<int> ans;
    for (int a = 1; a < x; ++a) {
        int b = x - a;
        int fa = a - pcnt[a],
            fb = b - pcnt[b];
        int d = std::abs(fa - fb);

        if (d < dmin) {
            dmin = d;
            ans.clear();
        }

        if (d == dmin) ans.push_back(a);
    }

    for (auto a : ans) {
        std::cout << a << " " << x - a << std::endl;
    }
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    init();
    solve();

    return 0;
}
0