結果

問題 No.1006 Share an Integer
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2020-03-17 21:24:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 1,405 ms
コンパイル使用メモリ 171,140 KB
実行使用メモリ 11,312 KB
最終ジャッジ日時 2024-05-08 01:23:42
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 38 ms
8,288 KB
testcase_12 AC 68 ms
10,792 KB
testcase_13 AC 73 ms
11,240 KB
testcase_14 AC 73 ms
11,312 KB
testcase_15 AC 71 ms
10,144 KB
testcase_16 AC 28 ms
6,996 KB
testcase_17 AC 38 ms
8,208 KB
testcase_18 AC 62 ms
10,264 KB
testcase_19 AC 60 ms
10,000 KB
testcase_20 AC 62 ms
10,776 KB
testcase_21 AC 72 ms
11,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int f[2000010];
int main() {
	int x; cin >> x;
	for(int i = 1; i <= x; ++i) {
		f[i] = i;
	}
	for(int i = 1; i <= x; ++i) {
		for(int j = i; j <= x; j += i) {
			--f[j];
		}
	}
	vector<pair<int, int>> ans;
	int mini = x;
	for(int i = 1; i <= x; ++i) {
		int s = abs(f[i] - f[x - i]);
		if(s < mini) {
			mini = s;
			ans.clear();
			ans.emplace_back(i, x - i);
		} else if(s == mini) {
			ans.emplace_back(i, x - i);
		}
	}
	for(auto& e : ans) {
		cout << e.first << " " << e.second << '\n';
	}
	return 0;
}
0