結果
問題 |
No.1006 Share an Integer
|
ユーザー |
![]() |
提出日時 | 2020-03-06 23:48:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 1,393 bytes |
コンパイル時間 | 1,560 ms |
コンパイル使用メモリ | 167,832 KB |
実行使用メモリ | 11,328 KB |
最終ジャッジ日時 | 2024-10-14 10:02:01 |
合計ジャッジ時間 | 3,891 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include<bits/stdc++.h> #define ll long long #define ALL(v) (v).begin(),(v).end() #define REP(i,p,n) for(int i=p;i<(int)(n);++i) #define rep(i,n) REP(i,0,n) #define dump(a) (cerr << #a << "=" << (a) << endl) #define DUMP(list) cout << "{ "; for(auto nth : list){ cout << nth << " "; } cout << "}" << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } using namespace std; int main(){ int d[2001000]; for(int i = 1; i <= 2e6; i++) { for(int j = i; j <= 2e6; j += i) { d[j]++; } } int X; cin >> X; int Y = X; int m = 0; while(Y > 0) { m++; Y /= 2; } ll mim = 100101001010101; REP(i, X/2 - sqrt(X), X/2+sqrt(X)) { int j = X - i; if (i > 0 && j > 0) { // cout << d(i) << endl; ll res = i - j - d[i] + d[j]; // cout << abs(res) << endl; chmin(mim, abs(res)); } } REP(i, X/2 - sqrt(X) , X/2 + sqrt(X)) { int j = X - i; if (i > 0 && j > 0) { ll res = i - j - d[i] + d[j]; // cout << i << " " << abs(res) << endl; if (mim == abs(res)) { cout << i << " " << j << endl; } } } }