結果

問題 No.1006 Share an Integer
ユーザー tatyamtatyam
提出日時 2020-03-03 02:49:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 200,428 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-13 22:04:55
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 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 39 ms
7,680 KB
testcase_12 AC 84 ms
10,684 KB
testcase_13 AC 93 ms
11,124 KB
testcase_14 AC 96 ms
11,120 KB
testcase_15 AC 75 ms
10,112 KB
testcase_16 AC 27 ms
6,784 KB
testcase_17 AC 39 ms
7,756 KB
testcase_18 AC 74 ms
10,184 KB
testcase_19 AC 64 ms
9,884 KB
testcase_20 AC 80 ms
10,240 KB
testcase_21 AC 94 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<class T> bool chmin(T& a, const T& b){ if(a > b){ a = b; return 1; } return 0; }

int main(){
    int x;
    cin >> x;
    int divisor[x];
    iota(divisor, divisor + x, 0);
    for(int i = 1; i < x; i++) for(int j = i; j < x; j += i) divisor[j]--;
    int min = 0x3fffffff;
    for(int i = 1; i <= x / 2; i++) chmin(min, abs(divisor[i] - divisor[x - i]));
    for(int i = 1; i < x; i++) if(abs(divisor[i] - divisor[x - i]) == min) cout << i << ' ' << x - i << endl;
}
0