結果

問題 No.1006 Share an Integer
ユーザー cureskolcureskol
提出日時 2020-04-13 22:15:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,179 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 1,625 ms
コンパイル使用メモリ 170,352 KB
実行使用メモリ 119,980 KB
最終ジャッジ日時 2024-09-25 10:54:25
合計ジャッジ時間 13,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
55,792 KB
testcase_01 AC 23 ms
55,796 KB
testcase_02 AC 22 ms
55,848 KB
testcase_03 AC 23 ms
55,716 KB
testcase_04 AC 24 ms
55,924 KB
testcase_05 AC 22 ms
55,900 KB
testcase_06 AC 22 ms
55,840 KB
testcase_07 AC 22 ms
55,896 KB
testcase_08 AC 23 ms
55,816 KB
testcase_09 AC 23 ms
55,888 KB
testcase_10 AC 23 ms
55,884 KB
testcase_11 AC 586 ms
91,564 KB
testcase_12 AC 1,051 ms
116,592 KB
testcase_13 AC 1,163 ms
119,968 KB
testcase_14 AC 1,179 ms
119,980 KB
testcase_15 AC 985 ms
110,720 KB
testcase_16 AC 465 ms
82,688 KB
testcase_17 AC 650 ms
92,488 KB
testcase_18 AC 982 ms
111,232 KB
testcase_19 AC 960 ms
108,776 KB
testcase_20 AC 1,039 ms
112,892 KB
testcase_21 AC 1,162 ms
119,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> yaku[2234567];

int f(int a){
  int cnt=1;
  for(int p:yaku[a])cnt*=p+1;
  return a-cnt;
}
template<typename T>
void chmin(T &a,T b){
  if(a>b)a=b;
}

signed main(){
  int x;cin>>x;
  for(int i=2;i<=x;i++){
    if(yaku[i].size())continue;
    for(int j=i;j<=x;j+=i){
      int tmp=j,cnt=0;
      while(tmp%i==0){
        tmp/=i;
        cnt++;
      }
      yaku[j].push_back(cnt);
    }
  }
  int ans=1e9;
  for(int a=1;a<x;a++)chmin(ans,abs(f(a)-f(x-a)));
  for(int a=1;a<x;a++)if(abs(f(a)-f(x-a))==ans)cout<<a<<" "<<x-a<<endl;
}
0