結果

問題 No.1006 Share an Integer
ユーザー SSRSSSRS
提出日時 2020-11-07 11:45:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 18,844 KB
最終ジャッジ日時 2024-07-22 14:27:32
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 39 ms
11,948 KB
testcase_12 AC 67 ms
17,984 KB
testcase_13 AC 72 ms
18,844 KB
testcase_14 AC 71 ms
18,792 KB
testcase_15 AC 62 ms
16,552 KB
testcase_16 AC 28 ms
9,780 KB
testcase_17 AC 40 ms
12,136 KB
testcase_18 AC 60 ms
16,696 KB
testcase_19 AC 59 ms
16,144 KB
testcase_20 AC 64 ms
16,956 KB
testcase_21 AC 72 ms
18,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <utility>
using namespace std;
const int INF = 10000000;
int main(){
	int X;
	cin >> X;
	vector<int> d(X, 0);
	for (int i = 1; i < X; i++){
		for (int j = i; j < X; j += i){
			d[j]++;
		}
	}
	vector<int> f(X);
	for (int i = 1; i < X; i++){
		f[i] = i - d[i];
	}
	vector<pair<int, int>> ans;
	int mn = INF;
	for (int i = 1; i < X; i++){
		int d = abs(f[i] - f[X - i]);
		if (mn > d){
			ans.clear();
			mn = d;
		}
		if (mn == d){
			ans.push_back(make_pair(i, X - i));
		}
	}
	int sz = ans.size();
	for (int i = 0; i < sz; i++){
		cout << ans[i].first << ' ' << ans[i].second << endl;
	}
}
0