結果

問題 No.1006 Share an Integer
ユーザー kotamanegikotamanegi
提出日時 2020-03-06 21:27:49
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,176 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 166,088 KB
実行使用メモリ 68,208 KB
最終ジャッジ日時 2024-11-30 16:37:57
合計ジャッジ時間 8,345 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
19,072 KB
testcase_01 AC 105 ms
18,944 KB
testcase_02 AC 109 ms
18,944 KB
testcase_03 WA -
testcase_04 AC 110 ms
19,072 KB
testcase_05 AC 124 ms
19,072 KB
testcase_06 AC 112 ms
19,048 KB
testcase_07 AC 103 ms
19,072 KB
testcase_08 AC 108 ms
19,072 KB
testcase_09 AC 108 ms
19,072 KB
testcase_10 AC 114 ms
19,072 KB
testcase_11 AC 308 ms
68,076 KB
testcase_12 AC 426 ms
68,076 KB
testcase_13 AC 471 ms
68,208 KB
testcase_14 AC 440 ms
68,076 KB
testcase_15 AC 405 ms
68,200 KB
testcase_16 AC 240 ms
43,552 KB
testcase_17 AC 292 ms
68,208 KB
testcase_18 AC 387 ms
68,204 KB
testcase_19 AC 393 ms
68,208 KB
testcase_20 AC 425 ms
68,204 KB
testcase_21 AC 443 ms
68,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:18: warning: '#pragma comment linker' ignored [-Wignored-pragmas]
    2 | #pragma comment (linker, "/STACK:526000000")
      |                  ^
1 warning generated.

ソースコード

diff #

#define  _CRT_SECURE_NO_WARNINGS
#pragma comment (linker, "/STACK:526000000")

#include "bits/stdc++.h"

using namespace std;
typedef string::const_iterator State;
#define eps 1e-11L
#define MAX_MOD 1000000007LL
#define GYAKU 500000004LL

#define MOD 998244353LL
#define seg_size 262144 * 4LL
#define pb push_back
#define mp make_pair
typedef long long ll;
#define REP(a,b) for(long long (a) = 0;(a) < (b);++(a))
#define ALL(x) (x).begin(),(x).end()

void init() {
    iostream::sync_with_stdio(false);
    cout << fixed << setprecision(20);
}

#define int ll
int d[3000000];
int f(int x) {
    return x - d[x];
}
void solve() {
    for (int i = 1; i <= 2e6; ++i) {
        for (int q = 1; q * i <= 2e6; ++q) {
            d[i * q]++;
        }
    }
    int x;
    cin >> x;
    vector<tuple<int, int, int>> inputs;
    REP(i, x) {
        inputs.push_back(make_tuple((long long)abs(f(i + 1) - f(x - i - 1)), i + 1,x - i - 1));
    }
    sort(ALL(inputs));
    REP(i, inputs.size()) {
        if (get<0>(inputs[i]) != get<0>(inputs[0])) break;
        cout << get<1>(inputs[i]) << " " << get<2>(inputs[i]) << endl;
    }
}

#undef int
int main() {
    init();

    solve();
}
0