結果

問題 No.1006 Share an Integer
ユーザー どららどらら
提出日時 2020-03-06 22:37:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 1,624 ms
コンパイル使用メモリ 170,200 KB
実行使用メモリ 11,396 KB
最終ジャッジ日時 2024-10-14 08:56:52
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
11,384 KB
testcase_01 AC 89 ms
11,180 KB
testcase_02 AC 85 ms
11,308 KB
testcase_03 AC 88 ms
11,272 KB
testcase_04 AC 90 ms
11,276 KB
testcase_05 AC 85 ms
11,240 KB
testcase_06 AC 86 ms
11,396 KB
testcase_07 AC 89 ms
11,260 KB
testcase_08 AC 84 ms
11,276 KB
testcase_09 AC 82 ms
11,300 KB
testcase_10 AC 85 ms
11,288 KB
testcase_11 AC 87 ms
11,308 KB
testcase_12 AC 89 ms
11,312 KB
testcase_13 AC 88 ms
11,324 KB
testcase_14 AC 90 ms
11,236 KB
testcase_15 AC 95 ms
11,260 KB
testcase_16 AC 89 ms
11,356 KB
testcase_17 AC 95 ms
11,296 KB
testcase_18 AC 92 ms
11,204 KB
testcase_19 AC 87 ms
11,244 KB
testcase_20 AC 90 ms
11,240 KB
testcase_21 AC 88 ms
11,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

int memo[2000005];

int main(){

  REP(i,1,2000005){
    int j = i;
    while(j<2000005){
      memo[j]++;
      j+=i;
    }
  }

  int X;
  cin >> X;

  int val = 1 << 30;
  vector<pair<int,int>> v;
  
  REP(i,1,X){
    int A = i;
    int B = X - A;

    int fA = A - memo[A];
    int fB = B - memo[B];
    int diff = abs(fA-fB);

    if(val == diff){
      v.emplace_back(A,B);
    }
    else if(val > diff){
      val = diff;
      v.clear();
      v.emplace_back(A,B);
    }
  }

  rep(i,v.size()){
    cout << v[i].first << " " << v[i].second << endl;
  }
  
  return 0;
}
0