結果

問題 No.1006 Share an Integer
ユーザー totori_nyaatotori_nyaa
提出日時 2020-03-06 22:13:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 175,560 KB
実行使用メモリ 126,208 KB
最終ジャッジ日時 2024-10-14 07:25:38
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 113 ms
71,912 KB
testcase_12 AC 193 ms
119,296 KB
testcase_13 AC 203 ms
126,028 KB
testcase_14 AC 203 ms
126,208 KB
testcase_15 AC 172 ms
108,532 KB
testcase_16 AC 83 ms
55,168 KB
testcase_17 AC 113 ms
73,728 KB
testcase_18 AC 179 ms
109,312 KB
testcase_19 AC 168 ms
104,704 KB
testcase_20 AC 180 ms
112,640 KB
testcase_21 AC 202 ms
125,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);

    int n;
    cin>>n;
    if(n==2){
        cout << 1 << " " << 1<< endl;
        return 0;
    }
    vector<int> v(n+1,1);
    vector<vector<int>> ans(2*n+1);
    for(int i=2;i<=n;i++){
        for(int j=i;j<=n;j+=i){
            v[j]++;
        }
        v[i] = i-v[i];
        if(i > n-i){
            ans[abs(v[i]-v[n-i])].push_back(i);
            ans[abs(v[i]-v[n-i])].push_back(n-i);
        }
        if(i==n-i){
            ans[abs(v[i]-v[n-i])].push_back(i);
        }
    }
    for(int i=0;i<=n;i++){
        if(ans[i].size()){
            sort(ans[i].begin(),ans[i].end());
            for(auto j:ans[i]){
                cout << j << " " << n-j << "\n";
            }
            return 0;
        }
    }
}
0