結果

問題 No.1006 Share an Integer
ユーザー beetbeet
提出日時 2020-03-06 21:52:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 201,208 KB
実行使用メモリ 19,124 KB
最終ジャッジ日時 2024-10-14 06:30:12
合計ジャッジ時間 5,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
19,124 KB
testcase_01 AC 116 ms
18,988 KB
testcase_02 AC 115 ms
19,000 KB
testcase_03 AC 111 ms
18,944 KB
testcase_04 AC 104 ms
18,928 KB
testcase_05 AC 102 ms
19,088 KB
testcase_06 AC 102 ms
18,924 KB
testcase_07 AC 101 ms
18,904 KB
testcase_08 AC 105 ms
18,932 KB
testcase_09 AC 112 ms
18,844 KB
testcase_10 AC 114 ms
19,124 KB
testcase_11 AC 103 ms
19,048 KB
testcase_12 AC 104 ms
18,996 KB
testcase_13 AC 115 ms
18,860 KB
testcase_14 AC 110 ms
19,028 KB
testcase_15 AC 110 ms
18,988 KB
testcase_16 AC 111 ms
19,008 KB
testcase_17 AC 117 ms
19,048 KB
testcase_18 AC 120 ms
19,104 KB
testcase_19 AC 111 ms
18,968 KB
testcase_20 AC 115 ms
18,988 KB
testcase_21 AC 109 ms
18,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
const Int MAX = 2e6+100;
Int cnt[MAX]={};
Int calc(Int a,Int b){
  return abs((a-cnt[a])-(b-cnt[b]));
}
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  for(Int i=1;i<MAX;i++)
    for(Int j=i;j<MAX;j+=i)
      cnt[j]++;

  Int x;
  cin>>x;
  Int res=MAX;
  for(Int a=1;a<x;a++)
    chmin(res,calc(a,x-a));

  for(Int a=1;a<x;a++)
    if(calc(a,x-a)==res)
      cout<<a<<" "<<x-a<<"\n";
  cout<<flush;
  return 0;
}
0