結果
問題 | No.1006 Share an Integer |
ユーザー | face4 |
提出日時 | 2020-03-06 21:46:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 801 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 70,164 KB |
実行使用メモリ | 13,384 KB |
最終ジャッジ日時 | 2024-10-14 05:41:40 |
合計ジャッジ時間 | 2,250 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include<iostream> #include<vector> using namespace std; typedef pair<int,int> pii; int count[2000001] = {}; bool np[2000001] = {}; int main(){ int n; cin >> n; for(int i = 1; i <= n; i++) count[i] = 1; for(int i = 2; i <= n; i++){ if(np[i]) continue; for(int j = i; j <= n; j += i){ np[j] = true; int tmp = 0, cp = j; while(cp%i == 0) tmp++, cp /= i; count[j] *= ++tmp; } } int tmp = 1<<30; vector<int> ans; for(int i = 1; i < n; i++){ int score = abs((i-count[i])-(n-i-count[n-i])); if(score > tmp) continue; if(score < tmp) ans.clear(); ans.push_back(i); tmp = score; } for(int i : ans) cout << i << " " << n-i << endl; return 0; }