結果

問題 No.1006 Share an Integer
ユーザー logxlogx
提出日時 2020-03-15 00:40:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 166,820 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-23 21:31:50
合計ジャッジ時間 35,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 3 ms
8,576 KB
testcase_03 WA -
testcase_04 AC 4 ms
10,144 KB
testcase_05 WA -
testcase_06 AC 10 ms
8,448 KB
testcase_07 WA -
testcase_08 AC 8 ms
10,496 KB
testcase_09 AC 13 ms
8,448 KB
testcase_10 AC 10 ms
8,448 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = s; i < (int)(n); i++)
typedef long long ll;

int euler(int x){
    int ans=0;
    rep2(i,1,x+1){
        if(x%i==0)ans+=1;
    }
    return ans;
}

int main() {
    int x;cin >> x;
    int m=x;
    rep2(i,1,x/2){
        int k;
        k=2*i+euler(x-i)-euler(i)-x;
        if(k<0)k*=-1;
        m=min(m,k);
        if(m==0)break;
    }
    rep2(i,1,x){
        int k;
        k=2*i+euler(x-i)-euler(i)-x;
        if(k<0)k*=-1;
        if(k==m)cout << i << ' ' << x-i << endl;
    }
}
0