結果

問題 No.1006 Share an Integer
ユーザー StrorkisStrorkis
提出日時 2020-03-06 22:40:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 11,032 KB
最終ジャッジ日時 2024-10-14 09:04:18
合計ジャッジ時間 2,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 39 ms
7,544 KB
testcase_12 AC 69 ms
10,568 KB
testcase_13 AC 72 ms
10,992 KB
testcase_14 AC 72 ms
10,956 KB
testcase_15 AC 61 ms
9,888 KB
testcase_16 AC 28 ms
6,816 KB
testcase_17 AC 41 ms
7,588 KB
testcase_18 AC 61 ms
10,100 KB
testcase_19 AC 59 ms
9,648 KB
testcase_20 AC 63 ms
10,136 KB
testcase_21 AC 71 ms
11,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
using namespace std;
using P = pair<int, int>;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  int X; cin >> X;
  vector<int> a(X, 1);
  for (int i = 2; i <= X; i++)
    for (int n = i; n <= X; n += i) a[n]++;

  auto f = [&](int n) { return n - a[n]; };
  
  set<P> s;
  int minfn = X;
  for (int n = 1; n <= X / 2; n++) {
    int fn = abs(f(n) - f(X-n));
    if (minfn > fn) {
      minfn = fn;
      s.clear();
      s.insert(P(n, X-n));
      s.insert(P(X-n, n));
    }
    else if (minfn == fn) {
      s.insert(P(n, X-n));
      s.insert(P(X-n, n));
    }
  }

  for (P p : s) cout << p.first << " " << p.second << "\n";
}
0