結果

問題 No.1006 Share an Integer
ユーザー ngtkanangtkana
提出日時 2020-03-07 17:56:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 168,536 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-15 04:31:37
合計ジャッジ時間 2,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 44 ms
11,904 KB
testcase_12 AC 92 ms
17,984 KB
testcase_13 AC 99 ms
18,656 KB
testcase_14 AC 101 ms
18,816 KB
testcase_15 AC 79 ms
16,512 KB
testcase_16 AC 33 ms
9,868 KB
testcase_17 AC 45 ms
12,160 KB
testcase_18 AC 79 ms
16,740 KB
testcase_19 AC 75 ms
16,040 KB
testcase_20 AC 82 ms
17,152 KB
testcase_21 AC 97 ms
18,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
int main(){
    int X;std::cin>>X;
    std::vector<int>a(X+1);
    for(int i=1;i<=X;i++){
        for(int j=i;j<=X;j+=i){
            a.at(j)++;
        }
    }
    std::vector<int>b(X+1);
    for(int i=0;i<=X;i++){
        int j=X-i;
        b.at(i)=std::abs(i-a.at(i)-(j-a.at(j)));
    }
    int min=*std::min_element(b.begin(),b.end());
    for(int i=1;i<X;i++){
        if(b.at(i)==min){
            std::cout<<i<<" "<<X-i<<std::endl;
        }
    }
}

0