結果

問題 No.1006 Share an Integer
ユーザー kikagekikage
提出日時 2020-04-11 04:53:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 60,376 KB
実行使用メモリ 18,764 KB
最終ジャッジ日時 2024-09-17 07:36:53
合計ジャッジ時間 2,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 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,944 KB
testcase_11 AC 41 ms
11,944 KB
testcase_12 AC 67 ms
17,800 KB
testcase_13 AC 72 ms
18,724 KB
testcase_14 AC 72 ms
18,668 KB
testcase_15 AC 61 ms
16,596 KB
testcase_16 AC 28 ms
9,816 KB
testcase_17 AC 40 ms
12,140 KB
testcase_18 AC 61 ms
16,652 KB
testcase_19 AC 58 ms
15,984 KB
testcase_20 AC 63 ms
17,016 KB
testcase_21 AC 72 ms
18,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
    int N;
    cin >> N;
    vector<int> d(N+1,0);
    vector<int> FA_B(N);
    int cmin=N;
    for(int i=1;i<=N;i++){
        for(int k=i;k<=N;k+=i)d[k]++;
    }
    for(int A=1;A<N;A++){
        FA_B[A]=abs(A-d[A]-(N-A)+d[N-A]);
        cmin=min(cmin,FA_B[A]);
    }
    for(int A=1;A<N;A++){
        if(FA_B[A]==cmin)cout << A << " " << N-A << endl;
    }
    return 0;
}
0