結果

問題 No.1006 Share an Integer
ユーザー 沙耶花沙耶花
提出日時 2020-03-06 21:50:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 914 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 213,024 KB
実行使用メモリ 121,200 KB
最終ジャッジ日時 2024-10-14 06:19:11
合計ジャッジ時間 12,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
10,968 KB
testcase_01 AC 65 ms
11,060 KB
testcase_02 AC 67 ms
11,036 KB
testcase_03 AC 66 ms
11,012 KB
testcase_04 AC 68 ms
11,104 KB
testcase_05 AC 67 ms
11,168 KB
testcase_06 AC 67 ms
11,080 KB
testcase_07 AC 66 ms
11,104 KB
testcase_08 AC 67 ms
11,140 KB
testcase_09 AC 66 ms
11,116 KB
testcase_10 AC 66 ms
11,076 KB
testcase_11 AC 540 ms
93,128 KB
testcase_12 AC 891 ms
115,072 KB
testcase_13 AC 910 ms
121,200 KB
testcase_14 AC 902 ms
120,860 KB
testcase_15 AC 793 ms
105,264 KB
testcase_16 AC 402 ms
57,720 KB
testcase_17 AC 528 ms
94,196 KB
testcase_18 AC 782 ms
105,488 KB
testcase_19 AC 780 ms
101,720 KB
testcase_20 AC 831 ms
109,132 KB
testcase_21 AC 914 ms
120,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000

int main(){

	int X;
	cin>>X;
	
	vector<int> cnt(2000001,0);
	
	for(int i=1;i<=2000000;i++){
		for(int j=i;j<=2000000;j+=i){
			cnt[j]++;
		}
	}
	
	vector<vector<int>> V;
	
	for(int i=1;i<X;i++){
		V.push_back({abs(i-cnt[i]-(X-i-cnt[X-i])),i,X-i});
	}
	
	sort(V.begin(),V.end());
	
	for(int i=0;i<V.size();i++){
		if(i==0||V[i][0]==V[i-1][0]){
			cout<<V[i][1]<<' '<<V[i][2]<<endl;
		}
		else{
			break;
		}
	}
	
    return 0;
}

0