結果

問題 No.800 四平方定理
ユーザー sykwersykwer
提出日時 2019-03-17 21:30:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 116,296 KB
実行使用メモリ 85,700 KB
最終ジャッジ日時 2024-07-07 20:44:07
合計ジャッジ時間 11,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 15 ms
6,940 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 359 ms
45,960 KB
testcase_11 AC 393 ms
49,568 KB
testcase_12 AC 416 ms
51,512 KB
testcase_13 AC 349 ms
35,664 KB
testcase_14 AC 371 ms
46,876 KB
testcase_15 AC 413 ms
51,032 KB
testcase_16 AC 377 ms
46,492 KB
testcase_17 AC 374 ms
47,304 KB
testcase_18 AC 440 ms
53,224 KB
testcase_19 AC 443 ms
53,824 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 445 ms
54,920 KB
testcase_23 AC 753 ms
84,592 KB
testcase_24 AC 663 ms
66,632 KB
testcase_25 AC 751 ms
84,544 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 659 ms
66,356 KB
testcase_29 AC 716 ms
84,924 KB
testcase_30 AC 672 ms
67,624 KB
testcase_31 AC 615 ms
65,416 KB
testcase_32 AC 690 ms
85,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* ---------- STL Libraries ---------- */
// IO library
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <ios>
#include <iostream>

// algorithm library
#include <algorithm>
#include <cmath>
#include <numeric>
#include <random>
#include <cstring>

// container library
#include <array>
#include <bitset>
#include <deque>
#include <map>
#include <unordered_map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>
#include <stack>

/* ---------- Namespace ---------- */
using namespace std;

/* ---------- Type ---------- */
using ll = long long;
#define int ll
#define P pair<ll, ll>

/* ---------- Constants  */
const double PI = 3.141592653589793238462643383279;
const ll MOD = 1e9 + 7;
const int INF = 1LL << 55;

/* v-v-v-v-v-v-v-v-v Main Part v-v-v-v-v-v-v-v-v */
signed main() {
    int N, D;
    cin >> N >> D;

    vector<int> pool1;
    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= N; j++) {
            pool1.push_back(i * i + j * j);
        }
    }
    sort(pool1.begin(), pool1.end());

    vector<int> pool2;
    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= N; j++) {
            int val = i * i - j * j + D;
            if (val <= 0) continue;
            pool2.push_back(val);
        }
    }
    sort(pool2.begin(), pool2.end());

    int ret = 0;
    for (int val : pool1) {
        ret += upper_bound(pool2.begin(), pool2.end(), val) - lower_bound(pool2.begin(), pool2.end(), val);
    }

    cout << ret << endl;

    return 0;
}
0